Ссылка на практикум
Суть задания состоит в определении констант ковалентных взаимодействий для молекулярной механики на основе квантово-химических расчётов.
from IPython.display import Image
f = open('et.inp', 'w')
f.write(""" $CONTRL COORD=ZMT UNITS=ANGS dfttyp=b3lyp RUNTYP=ENERGY $END
$BASIS GBASIS=N31 NGAUSS=6
POLAR=POPN31 NDFUNC=1 $END
$GUESS GUESS=HUCKEL $END
$system mwords=2 $end
$DATA
eth
C1
C
C 1 cc
H 2 ch 1 cchv
H 2 ch 1 cch 3 d1 0
H 2 ch 1 cch 3 d2 0
H 1 ch 2 cch 3 d3 0
H 1 ch 2 cch 5 d3 0
H 1 chv 2 cch 4 d3 0
cc=1.52986
ch=1.08439
chv=1.08439
cch=111.200
cchv=111.200
d1=120
d2=-120
d3=180
$END""")
f.close()
На основе этой заготовки создадим ряд файлов с различающейся длиной связи сс:
%%bash
### делаем цикл от -10 до 10 #####
for i in {-10..10}; do
#### нам надо рассчитать новую длину связи #####
#### с шагом 0.02 ангстрема, #####
#### воспользуемся калькулятором bc #####
#### и результат поместим в переменную nb #####
nb=$(echo "scale=5; 1.52986 + $i/50" | bc -l)
#### пролистаем файл et.inp и заменим указание переменной ###
#### на новое значение и пере направим результат в файл ###
sed "s/cc=1.52986/cc=$nb/" et.inp > b_${i}.inp
done
Запустим для них GAMESS:
%%bash
rm -rf ~/gamess-scratch/
for i in {-10..10}; do
gms b_${i}.inp 1 > b_${i}.log
done
cp b_-10.inp /home/students/y12/popov/gamess-scratch/b_-10.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_-10.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_-10.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_-10.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_-10.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_-10.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_-10.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_-10.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_-10.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_-10.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_-10.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_-10.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_-10.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_-10.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_-10.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_-10.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_-10.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_-10.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_-10.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_-10.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_-10.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_-10.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_-10.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_-10.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_-10.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_-10.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_-10.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_-10.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_-10.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_-10.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_-10.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_-10.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_-10.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_-10.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_-10.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_-10.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_-10.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_-10.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_-10.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_-10.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_-10.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_-10.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_-10.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_-10.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_-10.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_-10.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_-10.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_-10.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_-10.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_-10.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_-10.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_-10.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_-10.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_-10.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_-10.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_-10.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_-10.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_-10.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_-10.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_-10.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_-10.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_-10.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_-10.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_-10.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_-10.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_-10.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_-10.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_-10.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_-10.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_-10.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_-10.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_-10.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_-10.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_-10.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_-10.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_-10.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_-10.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_-10.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_-10.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_-10.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_-10.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_-10.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_-10.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_-10.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_-10.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_-10.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_-10.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_-10.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_-10.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_-10.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_-10.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_-10.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_-10.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_-10.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_-10.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_-10.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_-10.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_-10.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_-10.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_-10.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_-10.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_-10.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_-10.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_-10.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_-10.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_-10.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_-10.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_-10.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_-10.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_-10.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_-10.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_-10 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_-9.inp /home/students/y12/popov/gamess-scratch/b_-9.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_-9.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_-9.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_-9.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_-9.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_-9.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_-9.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_-9.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_-9.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_-9.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_-9.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_-9.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_-9.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_-9.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_-9.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_-9.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_-9.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_-9.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_-9.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_-9.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_-9.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_-9.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_-9.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_-9.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_-9.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_-9.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_-9.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_-9.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_-9.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_-9.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_-9.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_-9.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_-9.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_-9.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_-9.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_-9.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_-9.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_-9.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_-9.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_-9.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_-9.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_-9.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_-9.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_-9.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_-9.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_-9.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_-9.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_-9.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_-9.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_-9.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_-9.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_-9.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_-9.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_-9.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_-9.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_-9.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_-9.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_-9.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_-9.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_-9.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_-9.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_-9.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_-9.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_-9.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_-9.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_-9.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_-9.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_-9.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_-9.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_-9.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_-9.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_-9.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_-9.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_-9.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_-9.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_-9.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_-9.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_-9.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_-9.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_-9.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_-9.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_-9.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_-9.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_-9.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_-9.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_-9.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_-9.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_-9.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_-9.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_-9.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_-9.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_-9.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_-9.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_-9.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_-9.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_-9.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_-9.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_-9.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_-9.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_-9.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_-9.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_-9.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_-9.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_-9.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_-9.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_-9.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_-9.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_-9.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_-9.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_-9.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_-9.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_-9 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_-8.inp /home/students/y12/popov/gamess-scratch/b_-8.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_-8.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_-8.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_-8.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_-8.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_-8.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_-8.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_-8.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_-8.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_-8.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_-8.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_-8.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_-8.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_-8.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_-8.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_-8.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_-8.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_-8.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_-8.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_-8.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_-8.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_-8.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_-8.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_-8.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_-8.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_-8.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_-8.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_-8.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_-8.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_-8.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_-8.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_-8.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_-8.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_-8.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_-8.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_-8.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_-8.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_-8.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_-8.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_-8.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_-8.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_-8.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_-8.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_-8.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_-8.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_-8.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_-8.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_-8.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_-8.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_-8.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_-8.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_-8.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_-8.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_-8.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_-8.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_-8.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_-8.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_-8.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_-8.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_-8.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_-8.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_-8.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_-8.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_-8.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_-8.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_-8.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_-8.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_-8.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_-8.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_-8.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_-8.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_-8.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_-8.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_-8.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_-8.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_-8.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_-8.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_-8.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_-8.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_-8.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_-8.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_-8.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_-8.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_-8.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_-8.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_-8.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_-8.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_-8.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_-8.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_-8.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_-8.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_-8.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_-8.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_-8.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_-8.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_-8.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_-8.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_-8.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_-8.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_-8.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_-8.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_-8.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_-8.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_-8.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_-8.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_-8.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_-8.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_-8.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_-8.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_-8.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_-8.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_-8 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_-7.inp /home/students/y12/popov/gamess-scratch/b_-7.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_-7.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_-7.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_-7.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_-7.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_-7.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_-7.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_-7.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_-7.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_-7.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_-7.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_-7.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_-7.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_-7.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_-7.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_-7.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_-7.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_-7.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_-7.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_-7.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_-7.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_-7.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_-7.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_-7.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_-7.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_-7.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_-7.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_-7.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_-7.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_-7.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_-7.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_-7.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_-7.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_-7.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_-7.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_-7.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_-7.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_-7.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_-7.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_-7.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_-7.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_-7.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_-7.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_-7.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_-7.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_-7.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_-7.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_-7.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_-7.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_-7.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_-7.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_-7.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_-7.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_-7.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_-7.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_-7.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_-7.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_-7.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_-7.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_-7.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_-7.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_-7.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_-7.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_-7.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_-7.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_-7.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_-7.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_-7.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_-7.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_-7.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_-7.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_-7.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_-7.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_-7.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_-7.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_-7.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_-7.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_-7.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_-7.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_-7.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_-7.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_-7.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_-7.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_-7.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_-7.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_-7.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_-7.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_-7.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_-7.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_-7.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_-7.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_-7.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_-7.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_-7.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_-7.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_-7.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_-7.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_-7.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_-7.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_-7.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_-7.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_-7.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_-7.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_-7.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_-7.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_-7.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_-7.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_-7.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_-7.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_-7.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_-7.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_-7 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_-6.inp /home/students/y12/popov/gamess-scratch/b_-6.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_-6.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_-6.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_-6.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_-6.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_-6.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_-6.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_-6.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_-6.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_-6.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_-6.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_-6.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_-6.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_-6.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_-6.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_-6.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_-6.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_-6.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_-6.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_-6.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_-6.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_-6.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_-6.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_-6.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_-6.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_-6.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_-6.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_-6.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_-6.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_-6.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_-6.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_-6.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_-6.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_-6.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_-6.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_-6.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_-6.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_-6.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_-6.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_-6.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_-6.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_-6.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_-6.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_-6.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_-6.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_-6.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_-6.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_-6.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_-6.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_-6.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_-6.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_-6.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_-6.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_-6.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_-6.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_-6.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_-6.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_-6.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_-6.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_-6.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_-6.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_-6.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_-6.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_-6.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_-6.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_-6.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_-6.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_-6.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_-6.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_-6.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_-6.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_-6.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_-6.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_-6.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_-6.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_-6.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_-6.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_-6.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_-6.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_-6.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_-6.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_-6.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_-6.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_-6.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_-6.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_-6.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_-6.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_-6.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_-6.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_-6.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_-6.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_-6.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_-6.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_-6.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_-6.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_-6.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_-6.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_-6.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_-6.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_-6.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_-6.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_-6.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_-6.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_-6.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_-6.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_-6.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_-6.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_-6.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_-6.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_-6.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_-6.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_-6 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_-5.inp /home/students/y12/popov/gamess-scratch/b_-5.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_-5.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_-5.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_-5.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_-5.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_-5.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_-5.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_-5.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_-5.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_-5.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_-5.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_-5.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_-5.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_-5.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_-5.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_-5.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_-5.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_-5.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_-5.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_-5.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_-5.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_-5.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_-5.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_-5.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_-5.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_-5.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_-5.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_-5.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_-5.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_-5.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_-5.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_-5.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_-5.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_-5.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_-5.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_-5.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_-5.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_-5.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_-5.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_-5.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_-5.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_-5.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_-5.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_-5.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_-5.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_-5.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_-5.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_-5.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_-5.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_-5.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_-5.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_-5.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_-5.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_-5.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_-5.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_-5.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_-5.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_-5.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_-5.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_-5.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_-5.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_-5.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_-5.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_-5.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_-5.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_-5.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_-5.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_-5.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_-5.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_-5.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_-5.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_-5.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_-5.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_-5.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_-5.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_-5.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_-5.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_-5.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_-5.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_-5.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_-5.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_-5.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_-5.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_-5.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_-5.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_-5.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_-5.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_-5.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_-5.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_-5.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_-5.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_-5.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_-5.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_-5.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_-5.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_-5.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_-5.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_-5.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_-5.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_-5.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_-5.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_-5.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_-5.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_-5.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_-5.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_-5.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_-5.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_-5.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_-5.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_-5.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_-5.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_-5 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_-4.inp /home/students/y12/popov/gamess-scratch/b_-4.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_-4.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_-4.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_-4.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_-4.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_-4.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_-4.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_-4.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_-4.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_-4.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_-4.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_-4.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_-4.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_-4.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_-4.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_-4.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_-4.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_-4.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_-4.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_-4.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_-4.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_-4.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_-4.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_-4.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_-4.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_-4.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_-4.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_-4.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_-4.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_-4.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_-4.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_-4.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_-4.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_-4.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_-4.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_-4.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_-4.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_-4.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_-4.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_-4.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_-4.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_-4.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_-4.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_-4.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_-4.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_-4.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_-4.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_-4.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_-4.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_-4.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_-4.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_-4.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_-4.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_-4.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_-4.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_-4.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_-4.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_-4.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_-4.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_-4.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_-4.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_-4.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_-4.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_-4.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_-4.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_-4.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_-4.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_-4.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_-4.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_-4.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_-4.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_-4.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_-4.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_-4.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_-4.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_-4.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_-4.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_-4.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_-4.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_-4.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_-4.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_-4.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_-4.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_-4.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_-4.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_-4.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_-4.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_-4.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_-4.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_-4.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_-4.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_-4.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_-4.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_-4.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_-4.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_-4.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_-4.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_-4.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_-4.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_-4.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_-4.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_-4.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_-4.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_-4.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_-4.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_-4.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_-4.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_-4.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_-4.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_-4.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_-4.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_-4 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_-3.inp /home/students/y12/popov/gamess-scratch/b_-3.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_-3.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_-3.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_-3.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_-3.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_-3.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_-3.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_-3.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_-3.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_-3.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_-3.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_-3.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_-3.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_-3.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_-3.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_-3.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_-3.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_-3.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_-3.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_-3.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_-3.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_-3.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_-3.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_-3.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_-3.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_-3.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_-3.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_-3.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_-3.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_-3.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_-3.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_-3.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_-3.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_-3.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_-3.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_-3.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_-3.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_-3.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_-3.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_-3.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_-3.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_-3.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_-3.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_-3.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_-3.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_-3.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_-3.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_-3.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_-3.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_-3.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_-3.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_-3.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_-3.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_-3.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_-3.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_-3.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_-3.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_-3.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_-3.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_-3.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_-3.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_-3.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_-3.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_-3.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_-3.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_-3.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_-3.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_-3.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_-3.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_-3.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_-3.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_-3.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_-3.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_-3.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_-3.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_-3.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_-3.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_-3.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_-3.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_-3.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_-3.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_-3.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_-3.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_-3.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_-3.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_-3.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_-3.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_-3.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_-3.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_-3.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_-3.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_-3.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_-3.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_-3.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_-3.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_-3.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_-3.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_-3.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_-3.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_-3.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_-3.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_-3.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_-3.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_-3.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_-3.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_-3.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_-3.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_-3.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_-3.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_-3.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_-3.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_-3 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_-2.inp /home/students/y12/popov/gamess-scratch/b_-2.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_-2.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_-2.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_-2.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_-2.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_-2.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_-2.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_-2.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_-2.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_-2.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_-2.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_-2.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_-2.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_-2.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_-2.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_-2.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_-2.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_-2.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_-2.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_-2.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_-2.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_-2.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_-2.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_-2.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_-2.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_-2.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_-2.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_-2.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_-2.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_-2.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_-2.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_-2.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_-2.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_-2.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_-2.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_-2.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_-2.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_-2.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_-2.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_-2.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_-2.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_-2.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_-2.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_-2.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_-2.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_-2.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_-2.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_-2.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_-2.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_-2.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_-2.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_-2.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_-2.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_-2.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_-2.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_-2.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_-2.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_-2.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_-2.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_-2.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_-2.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_-2.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_-2.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_-2.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_-2.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_-2.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_-2.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_-2.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_-2.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_-2.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_-2.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_-2.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_-2.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_-2.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_-2.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_-2.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_-2.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_-2.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_-2.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_-2.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_-2.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_-2.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_-2.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_-2.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_-2.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_-2.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_-2.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_-2.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_-2.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_-2.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_-2.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_-2.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_-2.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_-2.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_-2.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_-2.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_-2.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_-2.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_-2.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_-2.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_-2.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_-2.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_-2.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_-2.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_-2.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_-2.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_-2.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_-2.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_-2.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_-2.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_-2.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_-2 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_-1.inp /home/students/y12/popov/gamess-scratch/b_-1.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_-1.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_-1.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_-1.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_-1.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_-1.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_-1.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_-1.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_-1.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_-1.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_-1.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_-1.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_-1.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_-1.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_-1.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_-1.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_-1.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_-1.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_-1.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_-1.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_-1.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_-1.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_-1.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_-1.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_-1.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_-1.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_-1.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_-1.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_-1.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_-1.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_-1.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_-1.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_-1.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_-1.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_-1.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_-1.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_-1.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_-1.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_-1.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_-1.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_-1.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_-1.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_-1.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_-1.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_-1.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_-1.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_-1.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_-1.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_-1.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_-1.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_-1.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_-1.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_-1.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_-1.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_-1.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_-1.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_-1.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_-1.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_-1.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_-1.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_-1.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_-1.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_-1.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_-1.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_-1.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_-1.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_-1.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_-1.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_-1.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_-1.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_-1.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_-1.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_-1.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_-1.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_-1.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_-1.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_-1.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_-1.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_-1.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_-1.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_-1.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_-1.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_-1.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_-1.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_-1.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_-1.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_-1.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_-1.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_-1.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_-1.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_-1.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_-1.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_-1.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_-1.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_-1.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_-1.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_-1.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_-1.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_-1.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_-1.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_-1.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_-1.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_-1.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_-1.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_-1.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_-1.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_-1.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_-1.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_-1.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_-1.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_-1.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_-1 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_0.inp /home/students/y12/popov/gamess-scratch/b_0.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_0.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_0.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_0.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_0.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_0.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_0.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_0.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_0.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_0.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_0.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_0.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_0.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_0.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_0.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_0.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_0.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_0.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_0.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_0.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_0.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_0.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_0.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_0.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_0.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_0.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_0.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_0.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_0.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_0.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_0.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_0.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_0.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_0.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_0.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_0.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_0.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_0.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_0.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_0.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_0.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_0.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_0.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_0.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_0.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_0.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_0.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_0.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_0.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_0.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_0.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_0.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_0.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_0.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_0.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_0.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_0.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_0.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_0.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_0.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_0.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_0.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_0.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_0.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_0.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_0.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_0.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_0.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_0.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_0.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_0.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_0.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_0.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_0.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_0.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_0.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_0.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_0.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_0.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_0.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_0.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_0.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_0.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_0.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_0.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_0.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_0.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_0.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_0.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_0.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_0.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_0.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_0.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_0.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_0.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_0.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_0.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_0.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_0.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_0.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_0.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_0.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_0.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_0.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_0.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_0.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_0.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_0.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_0.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_0.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_0.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_0 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_1.inp /home/students/y12/popov/gamess-scratch/b_1.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_1.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_1.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_1.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_1.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_1.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_1.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_1.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_1.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_1.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_1.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_1.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_1.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_1.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_1.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_1.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_1.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_1.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_1.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_1.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_1.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_1.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_1.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_1.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_1.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_1.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_1.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_1.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_1.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_1.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_1.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_1.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_1.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_1.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_1.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_1.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_1.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_1.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_1.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_1.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_1.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_1.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_1.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_1.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_1.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_1.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_1.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_1.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_1.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_1.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_1.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_1.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_1.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_1.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_1.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_1.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_1.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_1.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_1.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_1.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_1.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_1.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_1.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_1.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_1.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_1.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_1.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_1.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_1.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_1.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_1.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_1.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_1.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_1.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_1.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_1.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_1.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_1.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_1.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_1.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_1.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_1.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_1.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_1.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_1.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_1.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_1.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_1.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_1.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_1.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_1.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_1.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_1.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_1.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_1.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_1.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_1.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_1.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_1.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_1.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_1.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_1.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_1.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_1.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_1.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_1.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_1.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_1.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_1.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_1.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_1.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_1 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_2.inp /home/students/y12/popov/gamess-scratch/b_2.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_2.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_2.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_2.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_2.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_2.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_2.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_2.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_2.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_2.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_2.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_2.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_2.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_2.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_2.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_2.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_2.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_2.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_2.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_2.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_2.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_2.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_2.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_2.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_2.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_2.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_2.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_2.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_2.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_2.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_2.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_2.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_2.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_2.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_2.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_2.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_2.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_2.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_2.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_2.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_2.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_2.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_2.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_2.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_2.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_2.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_2.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_2.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_2.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_2.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_2.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_2.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_2.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_2.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_2.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_2.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_2.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_2.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_2.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_2.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_2.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_2.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_2.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_2.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_2.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_2.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_2.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_2.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_2.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_2.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_2.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_2.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_2.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_2.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_2.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_2.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_2.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_2.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_2.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_2.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_2.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_2.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_2.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_2.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_2.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_2.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_2.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_2.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_2.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_2.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_2.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_2.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_2.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_2.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_2.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_2.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_2.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_2.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_2.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_2.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_2.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_2.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_2.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_2.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_2.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_2.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_2.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_2.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_2.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_2.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_2.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_2 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_3.inp /home/students/y12/popov/gamess-scratch/b_3.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_3.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_3.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_3.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_3.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_3.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_3.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_3.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_3.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_3.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_3.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_3.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_3.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_3.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_3.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_3.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_3.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_3.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_3.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_3.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_3.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_3.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_3.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_3.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_3.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_3.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_3.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_3.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_3.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_3.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_3.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_3.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_3.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_3.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_3.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_3.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_3.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_3.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_3.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_3.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_3.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_3.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_3.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_3.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_3.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_3.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_3.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_3.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_3.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_3.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_3.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_3.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_3.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_3.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_3.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_3.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_3.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_3.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_3.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_3.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_3.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_3.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_3.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_3.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_3.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_3.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_3.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_3.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_3.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_3.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_3.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_3.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_3.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_3.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_3.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_3.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_3.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_3.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_3.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_3.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_3.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_3.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_3.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_3.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_3.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_3.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_3.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_3.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_3.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_3.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_3.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_3.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_3.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_3.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_3.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_3.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_3.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_3.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_3.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_3.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_3.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_3.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_3.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_3.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_3.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_3.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_3.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_3.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_3.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_3.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_3.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_3 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_4.inp /home/students/y12/popov/gamess-scratch/b_4.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_4.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_4.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_4.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_4.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_4.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_4.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_4.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_4.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_4.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_4.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_4.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_4.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_4.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_4.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_4.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_4.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_4.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_4.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_4.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_4.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_4.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_4.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_4.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_4.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_4.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_4.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_4.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_4.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_4.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_4.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_4.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_4.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_4.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_4.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_4.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_4.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_4.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_4.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_4.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_4.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_4.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_4.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_4.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_4.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_4.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_4.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_4.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_4.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_4.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_4.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_4.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_4.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_4.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_4.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_4.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_4.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_4.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_4.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_4.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_4.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_4.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_4.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_4.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_4.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_4.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_4.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_4.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_4.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_4.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_4.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_4.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_4.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_4.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_4.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_4.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_4.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_4.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_4.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_4.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_4.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_4.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_4.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_4.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_4.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_4.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_4.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_4.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_4.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_4.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_4.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_4.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_4.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_4.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_4.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_4.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_4.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_4.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_4.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_4.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_4.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_4.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_4.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_4.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_4.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_4.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_4.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_4.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_4.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_4.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_4.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_4 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_5.inp /home/students/y12/popov/gamess-scratch/b_5.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_5.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_5.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_5.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_5.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_5.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_5.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_5.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_5.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_5.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_5.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_5.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_5.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_5.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_5.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_5.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_5.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_5.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_5.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_5.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_5.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_5.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_5.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_5.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_5.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_5.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_5.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_5.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_5.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_5.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_5.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_5.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_5.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_5.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_5.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_5.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_5.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_5.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_5.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_5.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_5.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_5.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_5.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_5.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_5.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_5.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_5.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_5.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_5.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_5.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_5.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_5.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_5.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_5.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_5.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_5.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_5.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_5.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_5.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_5.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_5.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_5.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_5.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_5.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_5.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_5.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_5.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_5.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_5.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_5.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_5.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_5.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_5.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_5.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_5.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_5.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_5.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_5.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_5.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_5.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_5.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_5.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_5.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_5.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_5.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_5.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_5.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_5.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_5.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_5.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_5.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_5.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_5.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_5.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_5.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_5.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_5.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_5.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_5.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_5.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_5.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_5.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_5.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_5.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_5.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_5.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_5.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_5.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_5.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_5.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_5.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_5 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_6.inp /home/students/y12/popov/gamess-scratch/b_6.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_6.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_6.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_6.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_6.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_6.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_6.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_6.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_6.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_6.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_6.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_6.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_6.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_6.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_6.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_6.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_6.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_6.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_6.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_6.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_6.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_6.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_6.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_6.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_6.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_6.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_6.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_6.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_6.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_6.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_6.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_6.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_6.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_6.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_6.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_6.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_6.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_6.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_6.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_6.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_6.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_6.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_6.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_6.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_6.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_6.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_6.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_6.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_6.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_6.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_6.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_6.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_6.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_6.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_6.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_6.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_6.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_6.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_6.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_6.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_6.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_6.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_6.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_6.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_6.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_6.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_6.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_6.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_6.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_6.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_6.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_6.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_6.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_6.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_6.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_6.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_6.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_6.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_6.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_6.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_6.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_6.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_6.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_6.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_6.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_6.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_6.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_6.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_6.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_6.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_6.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_6.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_6.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_6.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_6.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_6.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_6.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_6.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_6.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_6.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_6.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_6.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_6.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_6.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_6.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_6.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_6.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_6.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_6.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_6.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_6.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_6 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_7.inp /home/students/y12/popov/gamess-scratch/b_7.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_7.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_7.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_7.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_7.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_7.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_7.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_7.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_7.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_7.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_7.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_7.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_7.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_7.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_7.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_7.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_7.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_7.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_7.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_7.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_7.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_7.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_7.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_7.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_7.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_7.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_7.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_7.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_7.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_7.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_7.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_7.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_7.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_7.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_7.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_7.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_7.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_7.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_7.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_7.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_7.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_7.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_7.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_7.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_7.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_7.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_7.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_7.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_7.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_7.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_7.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_7.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_7.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_7.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_7.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_7.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_7.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_7.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_7.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_7.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_7.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_7.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_7.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_7.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_7.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_7.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_7.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_7.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_7.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_7.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_7.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_7.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_7.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_7.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_7.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_7.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_7.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_7.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_7.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_7.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_7.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_7.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_7.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_7.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_7.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_7.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_7.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_7.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_7.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_7.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_7.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_7.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_7.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_7.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_7.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_7.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_7.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_7.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_7.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_7.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_7.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_7.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_7.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_7.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_7.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_7.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_7.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_7.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_7.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_7.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_7.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_7 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_8.inp /home/students/y12/popov/gamess-scratch/b_8.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_8.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_8.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_8.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_8.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_8.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_8.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_8.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_8.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_8.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_8.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_8.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_8.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_8.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_8.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_8.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_8.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_8.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_8.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_8.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_8.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_8.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_8.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_8.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_8.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_8.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_8.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_8.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_8.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_8.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_8.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_8.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_8.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_8.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_8.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_8.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_8.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_8.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_8.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_8.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_8.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_8.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_8.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_8.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_8.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_8.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_8.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_8.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_8.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_8.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_8.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_8.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_8.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_8.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_8.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_8.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_8.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_8.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_8.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_8.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_8.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_8.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_8.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_8.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_8.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_8.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_8.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_8.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_8.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_8.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_8.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_8.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_8.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_8.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_8.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_8.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_8.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_8.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_8.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_8.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_8.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_8.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_8.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_8.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_8.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_8.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_8.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_8.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_8.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_8.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_8.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_8.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_8.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_8.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_8.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_8.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_8.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_8.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_8.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_8.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_8.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_8.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_8.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_8.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_8.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_8.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_8.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_8.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_8.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_8.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_8.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_8 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_9.inp /home/students/y12/popov/gamess-scratch/b_9.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_9.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_9.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_9.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_9.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_9.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_9.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_9.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_9.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_9.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_9.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_9.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_9.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_9.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_9.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_9.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_9.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_9.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_9.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_9.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_9.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_9.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_9.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_9.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_9.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_9.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_9.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_9.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_9.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_9.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_9.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_9.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_9.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_9.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_9.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_9.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_9.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_9.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_9.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_9.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_9.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_9.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_9.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_9.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_9.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_9.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_9.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_9.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_9.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_9.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_9.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_9.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_9.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_9.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_9.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_9.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_9.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_9.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_9.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_9.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_9.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_9.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_9.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_9.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_9.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_9.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_9.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_9.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_9.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_9.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_9.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_9.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_9.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_9.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_9.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_9.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_9.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_9.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_9.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_9.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_9.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_9.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_9.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_9.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_9.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_9.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_9.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_9.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_9.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_9.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_9.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_9.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_9.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_9.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_9.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_9.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_9.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_9.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_9.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_9.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_9.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_9.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_9.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_9.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_9.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_9.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_9.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_9.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_9.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_9.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_9.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_9 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b_10.inp /home/students/y12/popov/gamess-scratch/b_10.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b_10.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b_10.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b_10.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b_10.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b_10.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b_10.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b_10.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b_10.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b_10.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b_10.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b_10.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b_10.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b_10.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b_10.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b_10.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b_10.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b_10.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b_10.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b_10.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b_10.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b_10.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b_10.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b_10.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b_10.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b_10.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b_10.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b_10.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b_10.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b_10.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b_10.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b_10.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b_10.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b_10.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b_10.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b_10.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b_10.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b_10.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b_10.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b_10.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b_10.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b_10.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b_10.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b_10.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b_10.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b_10.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b_10.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b_10.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b_10.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b_10.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b_10.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b_10.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b_10.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b_10.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b_10.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b_10.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b_10.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b_10.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b_10.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b_10.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b_10.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b_10.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b_10.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b_10.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b_10.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b_10.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b_10.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b_10.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b_10.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b_10.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b_10.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b_10.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b_10.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b_10.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b_10.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b_10.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b_10.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b_10.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b_10.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b_10.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b_10.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b_10.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b_10.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b_10.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b_10.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b_10.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b_10.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b_10.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b_10.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b_10.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b_10.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b_10.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b_10.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b_10.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b_10.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b_10.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b_10.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b_10.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b_10.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b_10.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b_10.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b_10.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b_10.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b_10.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b_10.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b_10.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b_10.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b_10.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b_10.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b_10.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b_10.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b_10 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo
Извлечём значения энергий:
%%bash
for i in {-10..10}; do
nb=$(echo "scale=5; 1.52986 + $i/50" | bc -l)
echo -n "$nb "
#awk '/TOTAL ENERGY =/{print $4}' b_${i}.log | tail -n 1
awk '/TOTAL ENERGY =/{print $4}' b_${i}.log
done
1.32986 -79.7339315289 1.34986 -79.7406173737 1.36986 -79.7462868578 1.38986 -79.7510331813 1.40986 -79.7549412921 1.42986 -79.7580886263 1.44986 -79.7605457819 1.46986 -79.7623771323 1.48986 -79.7636413832 1.50986 -79.7643920816 1.52986 -79.7646780790 1.54986 -79.7645439543 1.56986 -79.7640303992 1.58986 -79.7631745699 1.60986 -79.7620104053 1.62986 -79.7605689179 1.64986 -79.7588784564 1.66986 -79.7569649422 1.68986 -79.7548520851 1.70986 -79.7525615748 1.72986 -79.7501132582
Запишем их в файл:
%%bash
rm bond
for i in {-10..10}; do
nb=$(echo "scale=5; 1.52986 + $i/50" | bc -l)
echo -n "$nb " >> bond
awk '/TOTAL ENERGY =/{print $4}' b_${i}.log >> bond
done
import numpy as np
import matplotlib.pyplot as plt
from scipy import optimize
a = np.loadtxt("bond")
x_o=a[:,0]
y_o=a[:,1]
print "Initial data:", y_o
#function is f(x)=k(b-x)^2 + a
fitfunc = lambda p, x: p[0]*pow(p[1]-x,2) + p[2] # Target function
errfunc = lambda p, x, y: fitfunc(p, x) - y # Error function
p0 = [1,1, -79] # Initial guess for the parameters
p1, success = optimize.leastsq(errfunc, p0[:], args=(x_o, y_o))
print "Optimized params:", p1
#Plot it
plt.plot(x_o, y_o, "ro", x_o,fitfunc(p1,x_o),"r-",c='blue',alpha=0.5)
plt.xlim(1.3,1.8)
plt.savefig('bond.png')
plt.show()
Initial data: [-79.73393153 -79.74061737 -79.74628686 -79.75103318 -79.75494129 -79.75808863 -79.76054578 -79.76237713 -79.76364138 -79.76439208 -79.76467808 -79.76454395 -79.7640304 -79.76317457 -79.76201041 -79.76056892 -79.75887846 -79.75696494 -79.75485209 -79.75256157 -79.75011326] Optimized params: [ 0.56360732 1.55431773 -79.76518585]
Image(filename='bond.png')
Парабола не точно совпадает с точками, т.к. межатомный потенциал не является параболическим, а описывается более сложными функциями.
Проделаем аналогичные операции для валентного угла HCH:
%%bash
rm -rf ~/gamess-scratch/
rm angle
for i in {-10..10}; do
nb=$(echo "scale=5; 111.2 + $i/5" | bc -l)
sed "s/cch=111.200/cch=$nb/" et.inp > a_${i}.inp
gms a_${i}.inp 1 > a_${i}.log
echo -n "$nb " >> angle
awk '/TOTAL ENERGY =/{print $4}' a_${i}.log >> angle
done
cp a_-10.inp /home/students/y12/popov/gamess-scratch/a_-10.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_-10.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_-10.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_-10.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_-10.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_-10.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_-10.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_-10.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_-10.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_-10.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_-10.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_-10.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_-10.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_-10.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_-10.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_-10.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_-10.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_-10.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_-10.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_-10.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_-10.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_-10.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_-10.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_-10.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_-10.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_-10.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_-10.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_-10.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_-10.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_-10.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_-10.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_-10.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_-10.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_-10.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_-10.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_-10.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_-10.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_-10.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_-10.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_-10.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_-10.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_-10.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_-10.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_-10.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_-10.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_-10.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_-10.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_-10.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_-10.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_-10.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_-10.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_-10.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_-10.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_-10.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_-10.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_-10.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_-10.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_-10.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_-10.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_-10.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_-10.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_-10.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_-10.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_-10.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_-10.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_-10.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_-10.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_-10.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_-10.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_-10.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_-10.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_-10.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_-10.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_-10.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_-10.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_-10.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_-10.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_-10.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_-10.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_-10.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_-10.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_-10.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_-10.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_-10.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_-10.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_-10.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_-10.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_-10.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_-10.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_-10.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_-10.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_-10.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_-10.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_-10.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_-10.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_-10.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_-10.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_-10.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_-10.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_-10.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_-10.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_-10.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_-10.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_-10.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_-10.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_-10.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_-10.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_-10.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_-10.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_-10.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_-10.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_-10 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_-9.inp /home/students/y12/popov/gamess-scratch/a_-9.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_-9.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_-9.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_-9.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_-9.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_-9.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_-9.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_-9.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_-9.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_-9.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_-9.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_-9.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_-9.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_-9.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_-9.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_-9.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_-9.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_-9.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_-9.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_-9.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_-9.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_-9.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_-9.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_-9.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_-9.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_-9.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_-9.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_-9.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_-9.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_-9.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_-9.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_-9.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_-9.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_-9.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_-9.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_-9.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_-9.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_-9.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_-9.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_-9.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_-9.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_-9.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_-9.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_-9.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_-9.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_-9.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_-9.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_-9.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_-9.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_-9.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_-9.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_-9.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_-9.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_-9.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_-9.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_-9.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_-9.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_-9.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_-9.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_-9.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_-9.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_-9.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_-9.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_-9.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_-9.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_-9.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_-9.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_-9.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_-9.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_-9.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_-9.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_-9.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_-9.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_-9.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_-9.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_-9.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_-9.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_-9.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_-9.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_-9.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_-9.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_-9.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_-9.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_-9.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_-9.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_-9.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_-9.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_-9.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_-9.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_-9.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_-9.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_-9.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_-9.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_-9.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_-9.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_-9.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_-9.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_-9.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_-9.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_-9.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_-9.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_-9.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_-9.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_-9.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_-9.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_-9.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_-9.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_-9.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_-9.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_-9.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_-9.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_-9 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_-8.inp /home/students/y12/popov/gamess-scratch/a_-8.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_-8.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_-8.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_-8.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_-8.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_-8.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_-8.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_-8.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_-8.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_-8.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_-8.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_-8.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_-8.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_-8.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_-8.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_-8.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_-8.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_-8.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_-8.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_-8.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_-8.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_-8.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_-8.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_-8.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_-8.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_-8.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_-8.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_-8.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_-8.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_-8.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_-8.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_-8.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_-8.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_-8.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_-8.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_-8.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_-8.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_-8.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_-8.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_-8.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_-8.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_-8.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_-8.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_-8.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_-8.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_-8.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_-8.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_-8.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_-8.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_-8.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_-8.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_-8.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_-8.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_-8.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_-8.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_-8.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_-8.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_-8.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_-8.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_-8.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_-8.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_-8.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_-8.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_-8.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_-8.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_-8.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_-8.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_-8.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_-8.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_-8.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_-8.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_-8.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_-8.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_-8.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_-8.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_-8.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_-8.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_-8.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_-8.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_-8.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_-8.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_-8.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_-8.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_-8.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_-8.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_-8.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_-8.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_-8.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_-8.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_-8.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_-8.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_-8.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_-8.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_-8.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_-8.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_-8.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_-8.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_-8.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_-8.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_-8.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_-8.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_-8.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_-8.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_-8.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_-8.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_-8.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_-8.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_-8.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_-8.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_-8.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_-8.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_-8 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_-7.inp /home/students/y12/popov/gamess-scratch/a_-7.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_-7.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_-7.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_-7.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_-7.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_-7.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_-7.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_-7.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_-7.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_-7.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_-7.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_-7.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_-7.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_-7.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_-7.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_-7.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_-7.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_-7.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_-7.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_-7.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_-7.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_-7.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_-7.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_-7.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_-7.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_-7.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_-7.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_-7.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_-7.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_-7.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_-7.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_-7.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_-7.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_-7.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_-7.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_-7.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_-7.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_-7.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_-7.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_-7.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_-7.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_-7.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_-7.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_-7.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_-7.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_-7.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_-7.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_-7.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_-7.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_-7.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_-7.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_-7.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_-7.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_-7.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_-7.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_-7.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_-7.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_-7.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_-7.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_-7.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_-7.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_-7.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_-7.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_-7.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_-7.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_-7.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_-7.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_-7.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_-7.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_-7.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_-7.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_-7.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_-7.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_-7.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_-7.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_-7.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_-7.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_-7.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_-7.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_-7.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_-7.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_-7.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_-7.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_-7.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_-7.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_-7.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_-7.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_-7.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_-7.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_-7.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_-7.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_-7.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_-7.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_-7.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_-7.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_-7.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_-7.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_-7.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_-7.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_-7.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_-7.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_-7.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_-7.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_-7.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_-7.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_-7.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_-7.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_-7.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_-7.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_-7.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_-7.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_-7 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_-6.inp /home/students/y12/popov/gamess-scratch/a_-6.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_-6.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_-6.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_-6.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_-6.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_-6.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_-6.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_-6.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_-6.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_-6.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_-6.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_-6.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_-6.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_-6.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_-6.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_-6.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_-6.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_-6.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_-6.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_-6.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_-6.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_-6.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_-6.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_-6.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_-6.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_-6.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_-6.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_-6.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_-6.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_-6.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_-6.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_-6.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_-6.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_-6.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_-6.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_-6.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_-6.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_-6.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_-6.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_-6.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_-6.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_-6.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_-6.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_-6.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_-6.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_-6.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_-6.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_-6.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_-6.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_-6.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_-6.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_-6.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_-6.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_-6.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_-6.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_-6.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_-6.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_-6.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_-6.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_-6.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_-6.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_-6.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_-6.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_-6.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_-6.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_-6.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_-6.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_-6.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_-6.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_-6.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_-6.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_-6.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_-6.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_-6.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_-6.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_-6.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_-6.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_-6.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_-6.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_-6.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_-6.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_-6.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_-6.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_-6.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_-6.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_-6.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_-6.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_-6.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_-6.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_-6.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_-6.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_-6.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_-6.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_-6.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_-6.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_-6.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_-6.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_-6.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_-6.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_-6.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_-6.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_-6.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_-6.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_-6.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_-6.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_-6.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_-6.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_-6.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_-6.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_-6.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_-6.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_-6 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_-5.inp /home/students/y12/popov/gamess-scratch/a_-5.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_-5.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_-5.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_-5.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_-5.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_-5.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_-5.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_-5.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_-5.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_-5.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_-5.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_-5.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_-5.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_-5.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_-5.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_-5.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_-5.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_-5.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_-5.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_-5.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_-5.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_-5.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_-5.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_-5.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_-5.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_-5.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_-5.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_-5.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_-5.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_-5.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_-5.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_-5.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_-5.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_-5.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_-5.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_-5.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_-5.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_-5.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_-5.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_-5.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_-5.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_-5.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_-5.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_-5.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_-5.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_-5.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_-5.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_-5.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_-5.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_-5.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_-5.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_-5.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_-5.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_-5.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_-5.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_-5.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_-5.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_-5.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_-5.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_-5.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_-5.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_-5.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_-5.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_-5.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_-5.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_-5.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_-5.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_-5.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_-5.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_-5.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_-5.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_-5.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_-5.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_-5.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_-5.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_-5.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_-5.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_-5.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_-5.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_-5.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_-5.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_-5.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_-5.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_-5.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_-5.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_-5.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_-5.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_-5.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_-5.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_-5.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_-5.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_-5.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_-5.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_-5.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_-5.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_-5.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_-5.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_-5.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_-5.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_-5.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_-5.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_-5.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_-5.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_-5.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_-5.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_-5.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_-5.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_-5.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_-5.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_-5.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_-5.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_-5 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_-4.inp /home/students/y12/popov/gamess-scratch/a_-4.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_-4.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_-4.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_-4.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_-4.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_-4.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_-4.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_-4.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_-4.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_-4.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_-4.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_-4.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_-4.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_-4.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_-4.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_-4.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_-4.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_-4.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_-4.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_-4.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_-4.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_-4.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_-4.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_-4.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_-4.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_-4.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_-4.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_-4.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_-4.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_-4.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_-4.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_-4.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_-4.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_-4.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_-4.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_-4.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_-4.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_-4.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_-4.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_-4.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_-4.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_-4.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_-4.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_-4.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_-4.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_-4.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_-4.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_-4.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_-4.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_-4.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_-4.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_-4.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_-4.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_-4.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_-4.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_-4.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_-4.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_-4.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_-4.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_-4.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_-4.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_-4.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_-4.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_-4.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_-4.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_-4.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_-4.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_-4.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_-4.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_-4.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_-4.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_-4.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_-4.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_-4.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_-4.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_-4.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_-4.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_-4.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_-4.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_-4.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_-4.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_-4.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_-4.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_-4.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_-4.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_-4.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_-4.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_-4.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_-4.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_-4.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_-4.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_-4.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_-4.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_-4.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_-4.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_-4.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_-4.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_-4.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_-4.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_-4.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_-4.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_-4.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_-4.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_-4.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_-4.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_-4.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_-4.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_-4.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_-4.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_-4.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_-4.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_-4 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_-3.inp /home/students/y12/popov/gamess-scratch/a_-3.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_-3.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_-3.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_-3.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_-3.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_-3.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_-3.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_-3.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_-3.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_-3.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_-3.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_-3.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_-3.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_-3.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_-3.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_-3.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_-3.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_-3.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_-3.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_-3.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_-3.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_-3.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_-3.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_-3.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_-3.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_-3.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_-3.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_-3.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_-3.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_-3.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_-3.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_-3.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_-3.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_-3.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_-3.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_-3.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_-3.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_-3.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_-3.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_-3.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_-3.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_-3.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_-3.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_-3.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_-3.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_-3.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_-3.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_-3.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_-3.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_-3.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_-3.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_-3.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_-3.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_-3.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_-3.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_-3.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_-3.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_-3.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_-3.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_-3.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_-3.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_-3.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_-3.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_-3.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_-3.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_-3.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_-3.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_-3.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_-3.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_-3.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_-3.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_-3.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_-3.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_-3.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_-3.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_-3.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_-3.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_-3.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_-3.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_-3.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_-3.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_-3.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_-3.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_-3.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_-3.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_-3.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_-3.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_-3.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_-3.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_-3.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_-3.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_-3.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_-3.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_-3.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_-3.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_-3.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_-3.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_-3.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_-3.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_-3.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_-3.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_-3.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_-3.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_-3.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_-3.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_-3.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_-3.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_-3.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_-3.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_-3.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_-3.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_-3 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_-2.inp /home/students/y12/popov/gamess-scratch/a_-2.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_-2.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_-2.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_-2.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_-2.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_-2.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_-2.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_-2.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_-2.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_-2.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_-2.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_-2.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_-2.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_-2.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_-2.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_-2.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_-2.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_-2.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_-2.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_-2.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_-2.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_-2.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_-2.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_-2.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_-2.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_-2.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_-2.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_-2.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_-2.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_-2.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_-2.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_-2.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_-2.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_-2.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_-2.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_-2.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_-2.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_-2.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_-2.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_-2.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_-2.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_-2.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_-2.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_-2.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_-2.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_-2.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_-2.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_-2.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_-2.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_-2.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_-2.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_-2.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_-2.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_-2.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_-2.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_-2.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_-2.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_-2.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_-2.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_-2.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_-2.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_-2.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_-2.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_-2.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_-2.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_-2.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_-2.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_-2.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_-2.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_-2.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_-2.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_-2.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_-2.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_-2.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_-2.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_-2.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_-2.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_-2.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_-2.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_-2.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_-2.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_-2.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_-2.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_-2.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_-2.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_-2.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_-2.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_-2.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_-2.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_-2.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_-2.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_-2.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_-2.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_-2.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_-2.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_-2.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_-2.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_-2.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_-2.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_-2.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_-2.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_-2.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_-2.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_-2.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_-2.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_-2.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_-2.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_-2.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_-2.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_-2.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_-2.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_-2 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_-1.inp /home/students/y12/popov/gamess-scratch/a_-1.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_-1.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_-1.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_-1.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_-1.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_-1.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_-1.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_-1.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_-1.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_-1.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_-1.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_-1.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_-1.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_-1.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_-1.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_-1.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_-1.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_-1.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_-1.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_-1.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_-1.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_-1.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_-1.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_-1.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_-1.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_-1.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_-1.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_-1.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_-1.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_-1.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_-1.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_-1.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_-1.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_-1.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_-1.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_-1.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_-1.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_-1.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_-1.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_-1.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_-1.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_-1.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_-1.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_-1.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_-1.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_-1.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_-1.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_-1.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_-1.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_-1.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_-1.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_-1.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_-1.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_-1.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_-1.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_-1.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_-1.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_-1.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_-1.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_-1.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_-1.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_-1.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_-1.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_-1.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_-1.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_-1.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_-1.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_-1.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_-1.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_-1.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_-1.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_-1.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_-1.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_-1.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_-1.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_-1.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_-1.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_-1.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_-1.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_-1.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_-1.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_-1.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_-1.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_-1.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_-1.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_-1.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_-1.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_-1.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_-1.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_-1.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_-1.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_-1.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_-1.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_-1.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_-1.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_-1.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_-1.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_-1.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_-1.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_-1.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_-1.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_-1.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_-1.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_-1.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_-1.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_-1.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_-1.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_-1.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_-1.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_-1.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_-1.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_-1 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_0.inp /home/students/y12/popov/gamess-scratch/a_0.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_0.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_0.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_0.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_0.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_0.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_0.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_0.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_0.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_0.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_0.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_0.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_0.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_0.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_0.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_0.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_0.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_0.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_0.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_0.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_0.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_0.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_0.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_0.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_0.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_0.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_0.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_0.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_0.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_0.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_0.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_0.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_0.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_0.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_0.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_0.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_0.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_0.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_0.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_0.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_0.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_0.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_0.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_0.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_0.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_0.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_0.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_0.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_0.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_0.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_0.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_0.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_0.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_0.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_0.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_0.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_0.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_0.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_0.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_0.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_0.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_0.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_0.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_0.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_0.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_0.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_0.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_0.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_0.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_0.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_0.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_0.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_0.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_0.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_0.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_0.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_0.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_0.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_0.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_0.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_0.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_0.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_0.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_0.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_0.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_0.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_0.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_0.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_0.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_0.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_0.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_0.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_0.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_0.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_0.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_0.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_0.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_0.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_0.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_0.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_0.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_0.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_0.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_0.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_0.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_0.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_0.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_0.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_0.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_0.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_0.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_0 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_1.inp /home/students/y12/popov/gamess-scratch/a_1.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_1.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_1.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_1.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_1.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_1.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_1.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_1.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_1.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_1.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_1.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_1.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_1.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_1.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_1.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_1.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_1.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_1.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_1.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_1.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_1.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_1.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_1.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_1.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_1.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_1.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_1.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_1.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_1.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_1.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_1.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_1.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_1.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_1.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_1.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_1.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_1.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_1.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_1.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_1.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_1.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_1.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_1.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_1.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_1.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_1.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_1.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_1.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_1.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_1.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_1.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_1.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_1.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_1.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_1.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_1.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_1.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_1.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_1.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_1.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_1.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_1.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_1.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_1.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_1.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_1.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_1.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_1.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_1.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_1.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_1.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_1.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_1.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_1.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_1.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_1.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_1.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_1.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_1.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_1.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_1.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_1.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_1.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_1.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_1.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_1.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_1.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_1.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_1.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_1.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_1.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_1.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_1.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_1.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_1.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_1.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_1.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_1.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_1.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_1.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_1.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_1.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_1.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_1.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_1.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_1.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_1.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_1.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_1.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_1.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_1.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_1 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_2.inp /home/students/y12/popov/gamess-scratch/a_2.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_2.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_2.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_2.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_2.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_2.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_2.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_2.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_2.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_2.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_2.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_2.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_2.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_2.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_2.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_2.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_2.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_2.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_2.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_2.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_2.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_2.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_2.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_2.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_2.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_2.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_2.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_2.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_2.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_2.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_2.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_2.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_2.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_2.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_2.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_2.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_2.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_2.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_2.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_2.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_2.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_2.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_2.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_2.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_2.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_2.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_2.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_2.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_2.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_2.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_2.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_2.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_2.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_2.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_2.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_2.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_2.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_2.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_2.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_2.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_2.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_2.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_2.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_2.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_2.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_2.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_2.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_2.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_2.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_2.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_2.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_2.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_2.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_2.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_2.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_2.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_2.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_2.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_2.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_2.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_2.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_2.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_2.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_2.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_2.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_2.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_2.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_2.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_2.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_2.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_2.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_2.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_2.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_2.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_2.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_2.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_2.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_2.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_2.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_2.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_2.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_2.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_2.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_2.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_2.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_2.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_2.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_2.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_2.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_2.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_2.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_2 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_3.inp /home/students/y12/popov/gamess-scratch/a_3.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_3.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_3.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_3.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_3.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_3.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_3.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_3.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_3.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_3.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_3.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_3.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_3.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_3.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_3.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_3.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_3.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_3.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_3.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_3.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_3.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_3.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_3.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_3.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_3.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_3.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_3.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_3.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_3.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_3.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_3.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_3.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_3.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_3.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_3.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_3.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_3.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_3.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_3.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_3.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_3.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_3.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_3.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_3.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_3.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_3.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_3.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_3.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_3.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_3.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_3.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_3.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_3.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_3.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_3.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_3.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_3.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_3.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_3.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_3.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_3.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_3.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_3.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_3.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_3.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_3.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_3.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_3.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_3.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_3.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_3.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_3.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_3.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_3.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_3.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_3.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_3.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_3.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_3.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_3.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_3.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_3.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_3.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_3.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_3.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_3.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_3.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_3.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_3.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_3.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_3.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_3.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_3.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_3.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_3.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_3.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_3.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_3.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_3.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_3.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_3.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_3.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_3.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_3.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_3.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_3.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_3.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_3.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_3.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_3.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_3.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_3 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_4.inp /home/students/y12/popov/gamess-scratch/a_4.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_4.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_4.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_4.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_4.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_4.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_4.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_4.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_4.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_4.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_4.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_4.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_4.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_4.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_4.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_4.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_4.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_4.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_4.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_4.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_4.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_4.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_4.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_4.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_4.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_4.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_4.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_4.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_4.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_4.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_4.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_4.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_4.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_4.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_4.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_4.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_4.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_4.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_4.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_4.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_4.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_4.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_4.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_4.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_4.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_4.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_4.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_4.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_4.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_4.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_4.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_4.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_4.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_4.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_4.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_4.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_4.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_4.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_4.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_4.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_4.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_4.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_4.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_4.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_4.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_4.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_4.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_4.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_4.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_4.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_4.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_4.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_4.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_4.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_4.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_4.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_4.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_4.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_4.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_4.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_4.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_4.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_4.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_4.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_4.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_4.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_4.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_4.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_4.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_4.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_4.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_4.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_4.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_4.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_4.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_4.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_4.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_4.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_4.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_4.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_4.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_4.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_4.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_4.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_4.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_4.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_4.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_4.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_4.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_4.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_4.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_4 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_5.inp /home/students/y12/popov/gamess-scratch/a_5.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_5.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_5.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_5.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_5.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_5.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_5.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_5.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_5.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_5.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_5.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_5.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_5.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_5.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_5.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_5.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_5.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_5.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_5.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_5.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_5.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_5.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_5.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_5.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_5.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_5.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_5.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_5.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_5.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_5.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_5.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_5.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_5.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_5.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_5.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_5.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_5.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_5.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_5.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_5.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_5.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_5.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_5.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_5.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_5.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_5.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_5.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_5.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_5.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_5.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_5.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_5.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_5.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_5.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_5.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_5.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_5.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_5.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_5.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_5.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_5.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_5.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_5.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_5.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_5.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_5.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_5.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_5.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_5.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_5.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_5.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_5.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_5.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_5.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_5.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_5.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_5.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_5.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_5.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_5.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_5.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_5.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_5.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_5.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_5.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_5.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_5.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_5.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_5.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_5.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_5.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_5.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_5.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_5.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_5.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_5.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_5.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_5.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_5.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_5.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_5.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_5.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_5.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_5.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_5.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_5.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_5.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_5.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_5.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_5.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_5.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_5 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_6.inp /home/students/y12/popov/gamess-scratch/a_6.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_6.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_6.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_6.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_6.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_6.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_6.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_6.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_6.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_6.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_6.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_6.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_6.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_6.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_6.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_6.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_6.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_6.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_6.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_6.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_6.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_6.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_6.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_6.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_6.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_6.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_6.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_6.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_6.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_6.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_6.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_6.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_6.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_6.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_6.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_6.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_6.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_6.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_6.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_6.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_6.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_6.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_6.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_6.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_6.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_6.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_6.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_6.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_6.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_6.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_6.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_6.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_6.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_6.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_6.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_6.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_6.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_6.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_6.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_6.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_6.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_6.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_6.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_6.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_6.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_6.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_6.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_6.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_6.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_6.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_6.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_6.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_6.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_6.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_6.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_6.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_6.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_6.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_6.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_6.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_6.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_6.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_6.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_6.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_6.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_6.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_6.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_6.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_6.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_6.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_6.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_6.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_6.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_6.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_6.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_6.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_6.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_6.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_6.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_6.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_6.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_6.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_6.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_6.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_6.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_6.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_6.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_6.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_6.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_6.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_6.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_6 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_7.inp /home/students/y12/popov/gamess-scratch/a_7.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_7.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_7.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_7.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_7.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_7.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_7.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_7.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_7.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_7.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_7.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_7.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_7.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_7.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_7.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_7.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_7.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_7.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_7.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_7.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_7.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_7.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_7.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_7.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_7.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_7.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_7.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_7.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_7.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_7.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_7.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_7.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_7.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_7.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_7.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_7.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_7.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_7.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_7.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_7.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_7.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_7.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_7.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_7.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_7.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_7.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_7.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_7.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_7.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_7.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_7.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_7.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_7.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_7.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_7.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_7.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_7.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_7.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_7.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_7.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_7.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_7.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_7.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_7.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_7.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_7.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_7.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_7.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_7.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_7.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_7.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_7.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_7.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_7.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_7.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_7.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_7.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_7.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_7.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_7.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_7.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_7.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_7.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_7.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_7.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_7.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_7.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_7.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_7.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_7.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_7.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_7.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_7.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_7.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_7.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_7.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_7.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_7.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_7.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_7.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_7.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_7.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_7.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_7.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_7.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_7.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_7.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_7.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_7.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_7.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_7.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_7 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_8.inp /home/students/y12/popov/gamess-scratch/a_8.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_8.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_8.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_8.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_8.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_8.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_8.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_8.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_8.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_8.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_8.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_8.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_8.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_8.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_8.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_8.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_8.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_8.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_8.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_8.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_8.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_8.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_8.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_8.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_8.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_8.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_8.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_8.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_8.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_8.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_8.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_8.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_8.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_8.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_8.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_8.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_8.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_8.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_8.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_8.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_8.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_8.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_8.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_8.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_8.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_8.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_8.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_8.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_8.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_8.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_8.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_8.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_8.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_8.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_8.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_8.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_8.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_8.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_8.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_8.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_8.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_8.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_8.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_8.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_8.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_8.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_8.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_8.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_8.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_8.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_8.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_8.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_8.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_8.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_8.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_8.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_8.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_8.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_8.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_8.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_8.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_8.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_8.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_8.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_8.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_8.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_8.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_8.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_8.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_8.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_8.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_8.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_8.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_8.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_8.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_8.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_8.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_8.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_8.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_8.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_8.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_8.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_8.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_8.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_8.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_8.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_8.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_8.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_8.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_8.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_8.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_8 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_9.inp /home/students/y12/popov/gamess-scratch/a_9.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_9.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_9.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_9.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_9.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_9.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_9.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_9.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_9.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_9.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_9.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_9.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_9.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_9.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_9.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_9.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_9.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_9.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_9.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_9.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_9.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_9.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_9.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_9.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_9.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_9.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_9.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_9.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_9.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_9.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_9.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_9.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_9.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_9.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_9.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_9.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_9.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_9.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_9.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_9.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_9.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_9.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_9.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_9.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_9.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_9.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_9.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_9.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_9.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_9.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_9.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_9.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_9.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_9.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_9.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_9.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_9.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_9.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_9.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_9.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_9.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_9.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_9.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_9.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_9.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_9.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_9.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_9.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_9.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_9.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_9.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_9.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_9.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_9.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_9.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_9.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_9.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_9.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_9.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_9.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_9.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_9.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_9.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_9.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_9.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_9.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_9.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_9.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_9.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_9.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_9.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_9.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_9.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_9.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_9.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_9.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_9.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_9.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_9.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_9.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_9.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_9.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_9.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_9.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_9.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_9.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_9.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_9.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_9.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_9.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_9.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_9 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp a_10.inp /home/students/y12/popov/gamess-scratch/a_10.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/a_10.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/a_10.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/a_10.trj setenv RESTART /home/students/y12/popov/gamess-scratch/a_10.rst setenv INPUT /home/students/y12/popov/gamess-scratch/a_10.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/a_10.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/a_10.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/a_10.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/a_10.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/a_10.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/a_10.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/a_10.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/a_10.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/a_10.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/a_10.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/a_10.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/a_10.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/a_10.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/a_10.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/a_10.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/a_10.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/a_10.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/a_10.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/a_10.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/a_10.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/a_10.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/a_10.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/a_10.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/a_10.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/a_10.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/a_10.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/a_10.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/a_10.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/a_10.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/a_10.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/a_10.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/a_10.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/a_10.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/a_10.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/a_10.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/a_10.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/a_10.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/a_10.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/a_10.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/a_10.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/a_10.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/a_10.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/a_10.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/a_10.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/a_10.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/a_10.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/a_10.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/a_10.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/a_10.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/a_10.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/a_10.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/a_10.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/a_10.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/a_10.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/a_10.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/a_10.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/a_10.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/a_10.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/a_10.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/a_10.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/a_10.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/a_10.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/a_10.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/a_10.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/a_10.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/a_10.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/a_10.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/a_10.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/a_10.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/a_10.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/a_10.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/a_10.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/a_10.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/a_10.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/a_10.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/a_10.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/a_10.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/a_10.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/a_10.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/a_10.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/a_10.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/a_10.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/a_10.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/a_10.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/a_10.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/a_10.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/a_10.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/a_10.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/a_10.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/a_10.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/a_10.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/a_10.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/a_10.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/a_10.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/a_10.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/a_10.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/a_10.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/a_10.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/a_10.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/a_10.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/a_10.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/a_10.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/a_10.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/a_10.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/a_10.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x a_10 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo
a = np.loadtxt("angle")
x_o=a[:,0]
y_o=a[:,1]
print "Initial data:", y_o
#function is f(x)=k(b-x)^2 + a
fitfunc = lambda p, x: p[0]*pow(p[1]-x,2) + p[2] # Target function
errfunc = lambda p, x, y: fitfunc(p, x) - y # Error function
p0 = [1,1, -79] # Initial guess for the parameters
p1, success = optimize.leastsq(errfunc, p0[:], args=(x_o, y_o))
print "Optimized params:", p1
#Plot it
plt.plot(x_o, y_o, "ro", x_o,fitfunc(p1,x_o),"r-",c='blue',alpha=0.5)
plt.savefig('angle.png')
plt.show()
Initial data: [-79.76370844 -79.76388439 -79.76404291 -79.76418395 -79.76430746 -79.76441342 -79.76450176 -79.76457244 -79.76462542 -79.76466065 -79.76467808 -79.76467766 -79.76465935 -79.7646231 -79.76456887 -79.76449659 -79.76440623 -79.76429774 -79.76417106 -79.76402616 -79.76386298] Optimized params: [ 2.23091136e-04 1.11289603e+02 -7.97646799e+01]
Image(filename='angle.png')
И для торсионного угла d3:
%%bash
rm -rf ~/gamess-scratch/
rm torsion
for i in {-15..15}; do
nb=$(echo "scale=5; 0 + 180*$i/15" | bc -l)
sed "s/d3=180/d3=$nb/" et.inp > t_${i}.inp
gms t_${i}.inp 1 > t_${i}.log
echo -n "$nb " >> torsion
awk '/TOTAL ENERGY =/{print $4}' t_${i}.log >> torsion
done
rm: cannot remove `torsion': No such file or directory cp t_-15.inp /home/students/y12/popov/gamess-scratch/t_-15.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_-15.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_-15.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_-15.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_-15.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_-15.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_-15.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_-15.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_-15.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_-15.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_-15.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_-15.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_-15.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_-15.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_-15.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_-15.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_-15.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_-15.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_-15.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_-15.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_-15.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_-15.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_-15.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_-15.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_-15.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_-15.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_-15.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_-15.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_-15.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_-15.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_-15.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_-15.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_-15.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_-15.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_-15.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_-15.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_-15.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_-15.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_-15.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_-15.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_-15.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_-15.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_-15.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_-15.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_-15.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_-15.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_-15.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_-15.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_-15.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_-15.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_-15.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_-15.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_-15.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_-15.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_-15.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_-15.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_-15.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_-15.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_-15.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_-15.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_-15.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_-15.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_-15.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_-15.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_-15.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_-15.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_-15.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_-15.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_-15.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_-15.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_-15.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_-15.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_-15.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_-15.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_-15.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_-15.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_-15.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_-15.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_-15.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_-15.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_-15.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_-15.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_-15.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_-15.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_-15.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_-15.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_-15.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_-15.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_-15.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_-15.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_-15.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_-15.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_-15.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_-15.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_-15.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_-15.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_-15.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_-15.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_-15.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_-15.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_-15.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_-15.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_-15.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_-15.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_-15.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_-15.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_-15.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_-15.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_-15.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_-15.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_-15.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_-15 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_-14.inp /home/students/y12/popov/gamess-scratch/t_-14.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_-14.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_-14.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_-14.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_-14.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_-14.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_-14.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_-14.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_-14.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_-14.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_-14.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_-14.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_-14.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_-14.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_-14.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_-14.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_-14.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_-14.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_-14.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_-14.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_-14.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_-14.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_-14.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_-14.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_-14.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_-14.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_-14.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_-14.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_-14.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_-14.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_-14.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_-14.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_-14.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_-14.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_-14.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_-14.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_-14.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_-14.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_-14.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_-14.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_-14.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_-14.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_-14.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_-14.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_-14.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_-14.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_-14.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_-14.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_-14.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_-14.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_-14.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_-14.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_-14.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_-14.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_-14.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_-14.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_-14.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_-14.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_-14.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_-14.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_-14.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_-14.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_-14.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_-14.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_-14.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_-14.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_-14.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_-14.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_-14.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_-14.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_-14.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_-14.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_-14.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_-14.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_-14.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_-14.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_-14.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_-14.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_-14.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_-14.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_-14.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_-14.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_-14.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_-14.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_-14.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_-14.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_-14.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_-14.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_-14.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_-14.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_-14.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_-14.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_-14.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_-14.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_-14.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_-14.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_-14.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_-14.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_-14.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_-14.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_-14.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_-14.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_-14.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_-14.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_-14.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_-14.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_-14.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_-14.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_-14.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_-14.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_-14.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_-14 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_-13.inp /home/students/y12/popov/gamess-scratch/t_-13.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_-13.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_-13.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_-13.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_-13.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_-13.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_-13.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_-13.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_-13.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_-13.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_-13.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_-13.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_-13.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_-13.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_-13.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_-13.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_-13.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_-13.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_-13.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_-13.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_-13.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_-13.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_-13.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_-13.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_-13.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_-13.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_-13.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_-13.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_-13.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_-13.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_-13.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_-13.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_-13.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_-13.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_-13.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_-13.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_-13.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_-13.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_-13.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_-13.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_-13.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_-13.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_-13.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_-13.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_-13.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_-13.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_-13.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_-13.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_-13.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_-13.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_-13.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_-13.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_-13.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_-13.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_-13.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_-13.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_-13.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_-13.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_-13.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_-13.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_-13.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_-13.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_-13.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_-13.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_-13.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_-13.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_-13.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_-13.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_-13.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_-13.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_-13.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_-13.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_-13.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_-13.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_-13.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_-13.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_-13.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_-13.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_-13.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_-13.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_-13.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_-13.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_-13.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_-13.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_-13.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_-13.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_-13.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_-13.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_-13.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_-13.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_-13.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_-13.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_-13.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_-13.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_-13.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_-13.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_-13.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_-13.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_-13.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_-13.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_-13.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_-13.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_-13.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_-13.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_-13.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_-13.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_-13.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_-13.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_-13.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_-13.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_-13.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_-13 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_-12.inp /home/students/y12/popov/gamess-scratch/t_-12.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_-12.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_-12.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_-12.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_-12.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_-12.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_-12.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_-12.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_-12.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_-12.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_-12.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_-12.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_-12.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_-12.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_-12.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_-12.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_-12.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_-12.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_-12.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_-12.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_-12.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_-12.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_-12.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_-12.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_-12.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_-12.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_-12.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_-12.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_-12.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_-12.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_-12.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_-12.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_-12.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_-12.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_-12.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_-12.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_-12.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_-12.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_-12.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_-12.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_-12.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_-12.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_-12.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_-12.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_-12.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_-12.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_-12.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_-12.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_-12.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_-12.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_-12.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_-12.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_-12.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_-12.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_-12.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_-12.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_-12.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_-12.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_-12.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_-12.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_-12.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_-12.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_-12.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_-12.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_-12.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_-12.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_-12.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_-12.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_-12.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_-12.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_-12.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_-12.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_-12.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_-12.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_-12.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_-12.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_-12.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_-12.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_-12.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_-12.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_-12.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_-12.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_-12.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_-12.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_-12.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_-12.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_-12.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_-12.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_-12.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_-12.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_-12.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_-12.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_-12.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_-12.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_-12.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_-12.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_-12.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_-12.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_-12.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_-12.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_-12.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_-12.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_-12.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_-12.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_-12.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_-12.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_-12.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_-12.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_-12.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_-12.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_-12.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_-12 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_-11.inp /home/students/y12/popov/gamess-scratch/t_-11.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_-11.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_-11.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_-11.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_-11.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_-11.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_-11.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_-11.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_-11.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_-11.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_-11.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_-11.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_-11.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_-11.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_-11.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_-11.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_-11.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_-11.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_-11.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_-11.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_-11.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_-11.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_-11.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_-11.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_-11.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_-11.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_-11.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_-11.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_-11.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_-11.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_-11.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_-11.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_-11.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_-11.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_-11.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_-11.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_-11.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_-11.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_-11.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_-11.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_-11.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_-11.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_-11.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_-11.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_-11.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_-11.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_-11.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_-11.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_-11.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_-11.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_-11.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_-11.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_-11.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_-11.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_-11.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_-11.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_-11.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_-11.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_-11.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_-11.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_-11.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_-11.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_-11.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_-11.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_-11.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_-11.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_-11.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_-11.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_-11.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_-11.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_-11.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_-11.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_-11.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_-11.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_-11.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_-11.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_-11.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_-11.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_-11.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_-11.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_-11.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_-11.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_-11.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_-11.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_-11.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_-11.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_-11.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_-11.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_-11.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_-11.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_-11.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_-11.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_-11.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_-11.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_-11.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_-11.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_-11.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_-11.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_-11.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_-11.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_-11.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_-11.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_-11.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_-11.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_-11.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_-11.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_-11.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_-11.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_-11.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_-11.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_-11.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_-11 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_-10.inp /home/students/y12/popov/gamess-scratch/t_-10.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_-10.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_-10.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_-10.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_-10.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_-10.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_-10.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_-10.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_-10.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_-10.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_-10.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_-10.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_-10.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_-10.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_-10.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_-10.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_-10.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_-10.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_-10.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_-10.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_-10.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_-10.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_-10.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_-10.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_-10.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_-10.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_-10.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_-10.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_-10.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_-10.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_-10.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_-10.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_-10.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_-10.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_-10.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_-10.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_-10.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_-10.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_-10.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_-10.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_-10.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_-10.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_-10.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_-10.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_-10.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_-10.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_-10.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_-10.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_-10.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_-10.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_-10.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_-10.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_-10.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_-10.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_-10.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_-10.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_-10.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_-10.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_-10.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_-10.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_-10.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_-10.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_-10.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_-10.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_-10.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_-10.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_-10.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_-10.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_-10.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_-10.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_-10.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_-10.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_-10.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_-10.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_-10.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_-10.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_-10.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_-10.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_-10.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_-10.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_-10.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_-10.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_-10.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_-10.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_-10.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_-10.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_-10.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_-10.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_-10.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_-10.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_-10.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_-10.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_-10.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_-10.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_-10.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_-10.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_-10.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_-10.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_-10.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_-10.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_-10.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_-10.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_-10.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_-10.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_-10.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_-10.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_-10.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_-10.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_-10.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_-10.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_-10.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_-10 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_-9.inp /home/students/y12/popov/gamess-scratch/t_-9.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_-9.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_-9.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_-9.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_-9.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_-9.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_-9.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_-9.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_-9.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_-9.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_-9.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_-9.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_-9.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_-9.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_-9.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_-9.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_-9.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_-9.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_-9.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_-9.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_-9.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_-9.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_-9.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_-9.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_-9.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_-9.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_-9.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_-9.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_-9.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_-9.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_-9.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_-9.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_-9.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_-9.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_-9.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_-9.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_-9.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_-9.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_-9.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_-9.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_-9.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_-9.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_-9.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_-9.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_-9.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_-9.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_-9.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_-9.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_-9.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_-9.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_-9.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_-9.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_-9.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_-9.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_-9.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_-9.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_-9.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_-9.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_-9.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_-9.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_-9.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_-9.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_-9.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_-9.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_-9.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_-9.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_-9.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_-9.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_-9.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_-9.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_-9.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_-9.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_-9.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_-9.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_-9.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_-9.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_-9.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_-9.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_-9.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_-9.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_-9.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_-9.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_-9.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_-9.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_-9.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_-9.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_-9.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_-9.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_-9.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_-9.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_-9.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_-9.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_-9.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_-9.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_-9.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_-9.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_-9.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_-9.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_-9.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_-9.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_-9.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_-9.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_-9.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_-9.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_-9.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_-9.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_-9.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_-9.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_-9.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_-9.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_-9.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_-9 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_-8.inp /home/students/y12/popov/gamess-scratch/t_-8.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_-8.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_-8.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_-8.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_-8.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_-8.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_-8.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_-8.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_-8.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_-8.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_-8.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_-8.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_-8.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_-8.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_-8.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_-8.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_-8.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_-8.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_-8.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_-8.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_-8.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_-8.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_-8.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_-8.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_-8.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_-8.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_-8.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_-8.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_-8.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_-8.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_-8.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_-8.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_-8.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_-8.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_-8.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_-8.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_-8.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_-8.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_-8.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_-8.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_-8.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_-8.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_-8.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_-8.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_-8.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_-8.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_-8.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_-8.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_-8.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_-8.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_-8.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_-8.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_-8.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_-8.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_-8.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_-8.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_-8.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_-8.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_-8.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_-8.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_-8.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_-8.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_-8.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_-8.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_-8.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_-8.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_-8.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_-8.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_-8.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_-8.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_-8.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_-8.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_-8.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_-8.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_-8.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_-8.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_-8.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_-8.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_-8.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_-8.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_-8.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_-8.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_-8.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_-8.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_-8.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_-8.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_-8.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_-8.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_-8.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_-8.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_-8.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_-8.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_-8.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_-8.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_-8.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_-8.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_-8.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_-8.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_-8.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_-8.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_-8.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_-8.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_-8.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_-8.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_-8.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_-8.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_-8.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_-8.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_-8.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_-8.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_-8.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_-8 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_-7.inp /home/students/y12/popov/gamess-scratch/t_-7.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_-7.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_-7.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_-7.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_-7.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_-7.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_-7.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_-7.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_-7.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_-7.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_-7.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_-7.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_-7.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_-7.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_-7.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_-7.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_-7.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_-7.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_-7.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_-7.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_-7.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_-7.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_-7.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_-7.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_-7.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_-7.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_-7.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_-7.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_-7.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_-7.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_-7.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_-7.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_-7.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_-7.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_-7.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_-7.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_-7.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_-7.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_-7.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_-7.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_-7.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_-7.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_-7.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_-7.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_-7.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_-7.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_-7.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_-7.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_-7.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_-7.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_-7.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_-7.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_-7.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_-7.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_-7.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_-7.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_-7.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_-7.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_-7.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_-7.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_-7.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_-7.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_-7.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_-7.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_-7.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_-7.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_-7.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_-7.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_-7.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_-7.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_-7.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_-7.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_-7.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_-7.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_-7.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_-7.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_-7.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_-7.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_-7.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_-7.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_-7.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_-7.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_-7.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_-7.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_-7.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_-7.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_-7.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_-7.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_-7.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_-7.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_-7.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_-7.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_-7.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_-7.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_-7.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_-7.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_-7.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_-7.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_-7.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_-7.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_-7.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_-7.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_-7.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_-7.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_-7.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_-7.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_-7.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_-7.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_-7.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_-7.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_-7.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_-7 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_-6.inp /home/students/y12/popov/gamess-scratch/t_-6.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_-6.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_-6.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_-6.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_-6.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_-6.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_-6.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_-6.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_-6.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_-6.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_-6.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_-6.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_-6.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_-6.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_-6.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_-6.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_-6.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_-6.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_-6.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_-6.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_-6.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_-6.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_-6.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_-6.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_-6.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_-6.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_-6.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_-6.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_-6.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_-6.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_-6.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_-6.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_-6.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_-6.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_-6.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_-6.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_-6.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_-6.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_-6.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_-6.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_-6.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_-6.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_-6.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_-6.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_-6.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_-6.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_-6.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_-6.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_-6.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_-6.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_-6.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_-6.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_-6.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_-6.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_-6.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_-6.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_-6.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_-6.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_-6.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_-6.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_-6.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_-6.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_-6.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_-6.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_-6.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_-6.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_-6.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_-6.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_-6.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_-6.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_-6.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_-6.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_-6.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_-6.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_-6.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_-6.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_-6.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_-6.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_-6.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_-6.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_-6.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_-6.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_-6.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_-6.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_-6.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_-6.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_-6.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_-6.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_-6.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_-6.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_-6.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_-6.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_-6.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_-6.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_-6.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_-6.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_-6.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_-6.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_-6.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_-6.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_-6.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_-6.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_-6.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_-6.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_-6.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_-6.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_-6.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_-6.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_-6.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_-6.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_-6.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_-6 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_-5.inp /home/students/y12/popov/gamess-scratch/t_-5.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_-5.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_-5.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_-5.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_-5.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_-5.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_-5.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_-5.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_-5.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_-5.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_-5.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_-5.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_-5.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_-5.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_-5.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_-5.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_-5.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_-5.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_-5.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_-5.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_-5.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_-5.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_-5.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_-5.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_-5.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_-5.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_-5.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_-5.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_-5.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_-5.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_-5.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_-5.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_-5.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_-5.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_-5.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_-5.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_-5.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_-5.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_-5.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_-5.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_-5.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_-5.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_-5.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_-5.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_-5.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_-5.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_-5.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_-5.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_-5.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_-5.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_-5.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_-5.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_-5.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_-5.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_-5.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_-5.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_-5.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_-5.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_-5.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_-5.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_-5.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_-5.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_-5.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_-5.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_-5.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_-5.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_-5.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_-5.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_-5.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_-5.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_-5.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_-5.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_-5.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_-5.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_-5.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_-5.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_-5.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_-5.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_-5.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_-5.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_-5.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_-5.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_-5.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_-5.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_-5.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_-5.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_-5.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_-5.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_-5.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_-5.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_-5.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_-5.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_-5.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_-5.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_-5.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_-5.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_-5.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_-5.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_-5.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_-5.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_-5.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_-5.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_-5.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_-5.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_-5.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_-5.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_-5.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_-5.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_-5.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_-5.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_-5.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_-5 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_-4.inp /home/students/y12/popov/gamess-scratch/t_-4.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_-4.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_-4.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_-4.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_-4.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_-4.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_-4.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_-4.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_-4.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_-4.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_-4.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_-4.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_-4.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_-4.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_-4.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_-4.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_-4.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_-4.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_-4.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_-4.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_-4.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_-4.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_-4.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_-4.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_-4.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_-4.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_-4.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_-4.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_-4.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_-4.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_-4.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_-4.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_-4.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_-4.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_-4.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_-4.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_-4.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_-4.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_-4.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_-4.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_-4.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_-4.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_-4.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_-4.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_-4.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_-4.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_-4.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_-4.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_-4.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_-4.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_-4.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_-4.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_-4.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_-4.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_-4.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_-4.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_-4.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_-4.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_-4.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_-4.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_-4.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_-4.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_-4.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_-4.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_-4.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_-4.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_-4.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_-4.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_-4.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_-4.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_-4.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_-4.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_-4.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_-4.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_-4.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_-4.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_-4.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_-4.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_-4.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_-4.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_-4.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_-4.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_-4.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_-4.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_-4.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_-4.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_-4.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_-4.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_-4.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_-4.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_-4.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_-4.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_-4.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_-4.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_-4.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_-4.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_-4.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_-4.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_-4.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_-4.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_-4.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_-4.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_-4.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_-4.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_-4.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_-4.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_-4.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_-4.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_-4.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_-4.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_-4.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_-4 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_-3.inp /home/students/y12/popov/gamess-scratch/t_-3.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_-3.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_-3.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_-3.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_-3.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_-3.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_-3.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_-3.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_-3.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_-3.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_-3.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_-3.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_-3.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_-3.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_-3.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_-3.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_-3.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_-3.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_-3.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_-3.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_-3.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_-3.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_-3.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_-3.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_-3.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_-3.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_-3.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_-3.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_-3.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_-3.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_-3.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_-3.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_-3.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_-3.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_-3.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_-3.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_-3.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_-3.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_-3.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_-3.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_-3.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_-3.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_-3.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_-3.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_-3.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_-3.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_-3.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_-3.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_-3.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_-3.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_-3.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_-3.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_-3.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_-3.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_-3.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_-3.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_-3.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_-3.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_-3.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_-3.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_-3.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_-3.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_-3.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_-3.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_-3.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_-3.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_-3.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_-3.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_-3.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_-3.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_-3.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_-3.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_-3.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_-3.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_-3.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_-3.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_-3.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_-3.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_-3.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_-3.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_-3.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_-3.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_-3.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_-3.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_-3.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_-3.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_-3.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_-3.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_-3.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_-3.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_-3.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_-3.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_-3.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_-3.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_-3.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_-3.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_-3.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_-3.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_-3.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_-3.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_-3.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_-3.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_-3.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_-3.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_-3.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_-3.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_-3.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_-3.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_-3.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_-3.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_-3.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_-3 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_-2.inp /home/students/y12/popov/gamess-scratch/t_-2.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_-2.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_-2.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_-2.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_-2.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_-2.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_-2.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_-2.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_-2.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_-2.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_-2.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_-2.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_-2.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_-2.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_-2.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_-2.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_-2.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_-2.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_-2.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_-2.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_-2.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_-2.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_-2.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_-2.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_-2.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_-2.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_-2.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_-2.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_-2.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_-2.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_-2.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_-2.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_-2.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_-2.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_-2.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_-2.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_-2.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_-2.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_-2.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_-2.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_-2.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_-2.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_-2.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_-2.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_-2.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_-2.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_-2.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_-2.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_-2.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_-2.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_-2.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_-2.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_-2.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_-2.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_-2.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_-2.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_-2.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_-2.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_-2.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_-2.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_-2.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_-2.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_-2.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_-2.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_-2.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_-2.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_-2.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_-2.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_-2.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_-2.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_-2.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_-2.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_-2.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_-2.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_-2.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_-2.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_-2.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_-2.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_-2.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_-2.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_-2.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_-2.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_-2.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_-2.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_-2.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_-2.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_-2.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_-2.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_-2.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_-2.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_-2.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_-2.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_-2.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_-2.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_-2.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_-2.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_-2.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_-2.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_-2.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_-2.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_-2.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_-2.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_-2.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_-2.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_-2.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_-2.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_-2.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_-2.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_-2.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_-2.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_-2.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_-2 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_-1.inp /home/students/y12/popov/gamess-scratch/t_-1.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_-1.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_-1.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_-1.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_-1.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_-1.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_-1.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_-1.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_-1.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_-1.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_-1.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_-1.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_-1.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_-1.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_-1.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_-1.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_-1.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_-1.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_-1.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_-1.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_-1.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_-1.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_-1.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_-1.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_-1.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_-1.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_-1.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_-1.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_-1.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_-1.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_-1.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_-1.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_-1.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_-1.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_-1.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_-1.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_-1.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_-1.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_-1.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_-1.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_-1.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_-1.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_-1.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_-1.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_-1.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_-1.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_-1.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_-1.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_-1.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_-1.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_-1.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_-1.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_-1.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_-1.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_-1.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_-1.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_-1.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_-1.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_-1.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_-1.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_-1.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_-1.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_-1.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_-1.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_-1.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_-1.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_-1.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_-1.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_-1.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_-1.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_-1.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_-1.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_-1.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_-1.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_-1.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_-1.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_-1.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_-1.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_-1.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_-1.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_-1.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_-1.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_-1.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_-1.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_-1.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_-1.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_-1.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_-1.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_-1.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_-1.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_-1.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_-1.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_-1.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_-1.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_-1.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_-1.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_-1.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_-1.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_-1.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_-1.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_-1.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_-1.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_-1.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_-1.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_-1.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_-1.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_-1.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_-1.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_-1.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_-1.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_-1.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_-1 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_0.inp /home/students/y12/popov/gamess-scratch/t_0.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_0.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_0.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_0.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_0.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_0.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_0.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_0.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_0.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_0.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_0.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_0.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_0.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_0.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_0.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_0.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_0.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_0.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_0.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_0.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_0.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_0.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_0.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_0.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_0.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_0.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_0.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_0.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_0.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_0.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_0.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_0.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_0.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_0.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_0.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_0.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_0.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_0.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_0.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_0.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_0.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_0.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_0.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_0.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_0.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_0.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_0.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_0.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_0.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_0.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_0.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_0.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_0.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_0.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_0.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_0.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_0.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_0.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_0.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_0.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_0.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_0.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_0.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_0.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_0.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_0.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_0.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_0.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_0.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_0.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_0.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_0.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_0.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_0.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_0.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_0.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_0.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_0.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_0.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_0.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_0.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_0.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_0.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_0.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_0.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_0.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_0.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_0.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_0.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_0.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_0.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_0.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_0.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_0.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_0.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_0.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_0.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_0.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_0.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_0.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_0.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_0.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_0.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_0.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_0.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_0.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_0.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_0.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_0.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_0.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_0.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_0 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_1.inp /home/students/y12/popov/gamess-scratch/t_1.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_1.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_1.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_1.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_1.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_1.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_1.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_1.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_1.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_1.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_1.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_1.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_1.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_1.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_1.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_1.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_1.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_1.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_1.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_1.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_1.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_1.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_1.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_1.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_1.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_1.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_1.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_1.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_1.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_1.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_1.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_1.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_1.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_1.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_1.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_1.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_1.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_1.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_1.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_1.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_1.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_1.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_1.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_1.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_1.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_1.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_1.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_1.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_1.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_1.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_1.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_1.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_1.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_1.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_1.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_1.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_1.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_1.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_1.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_1.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_1.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_1.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_1.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_1.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_1.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_1.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_1.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_1.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_1.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_1.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_1.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_1.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_1.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_1.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_1.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_1.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_1.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_1.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_1.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_1.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_1.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_1.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_1.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_1.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_1.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_1.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_1.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_1.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_1.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_1.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_1.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_1.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_1.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_1.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_1.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_1.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_1.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_1.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_1.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_1.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_1.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_1.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_1.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_1.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_1.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_1.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_1.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_1.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_1.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_1.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_1.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_1 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_2.inp /home/students/y12/popov/gamess-scratch/t_2.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_2.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_2.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_2.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_2.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_2.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_2.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_2.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_2.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_2.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_2.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_2.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_2.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_2.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_2.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_2.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_2.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_2.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_2.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_2.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_2.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_2.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_2.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_2.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_2.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_2.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_2.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_2.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_2.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_2.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_2.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_2.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_2.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_2.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_2.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_2.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_2.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_2.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_2.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_2.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_2.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_2.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_2.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_2.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_2.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_2.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_2.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_2.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_2.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_2.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_2.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_2.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_2.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_2.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_2.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_2.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_2.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_2.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_2.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_2.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_2.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_2.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_2.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_2.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_2.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_2.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_2.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_2.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_2.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_2.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_2.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_2.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_2.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_2.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_2.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_2.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_2.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_2.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_2.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_2.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_2.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_2.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_2.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_2.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_2.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_2.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_2.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_2.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_2.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_2.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_2.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_2.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_2.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_2.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_2.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_2.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_2.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_2.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_2.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_2.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_2.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_2.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_2.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_2.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_2.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_2.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_2.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_2.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_2.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_2.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_2.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_2 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_3.inp /home/students/y12/popov/gamess-scratch/t_3.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_3.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_3.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_3.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_3.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_3.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_3.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_3.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_3.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_3.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_3.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_3.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_3.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_3.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_3.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_3.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_3.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_3.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_3.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_3.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_3.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_3.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_3.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_3.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_3.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_3.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_3.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_3.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_3.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_3.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_3.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_3.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_3.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_3.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_3.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_3.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_3.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_3.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_3.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_3.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_3.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_3.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_3.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_3.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_3.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_3.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_3.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_3.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_3.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_3.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_3.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_3.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_3.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_3.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_3.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_3.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_3.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_3.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_3.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_3.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_3.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_3.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_3.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_3.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_3.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_3.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_3.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_3.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_3.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_3.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_3.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_3.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_3.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_3.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_3.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_3.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_3.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_3.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_3.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_3.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_3.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_3.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_3.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_3.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_3.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_3.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_3.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_3.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_3.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_3.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_3.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_3.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_3.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_3.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_3.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_3.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_3.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_3.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_3.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_3.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_3.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_3.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_3.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_3.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_3.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_3.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_3.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_3.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_3.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_3.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_3.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_3 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_4.inp /home/students/y12/popov/gamess-scratch/t_4.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_4.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_4.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_4.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_4.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_4.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_4.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_4.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_4.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_4.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_4.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_4.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_4.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_4.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_4.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_4.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_4.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_4.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_4.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_4.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_4.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_4.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_4.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_4.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_4.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_4.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_4.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_4.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_4.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_4.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_4.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_4.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_4.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_4.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_4.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_4.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_4.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_4.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_4.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_4.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_4.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_4.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_4.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_4.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_4.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_4.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_4.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_4.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_4.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_4.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_4.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_4.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_4.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_4.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_4.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_4.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_4.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_4.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_4.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_4.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_4.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_4.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_4.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_4.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_4.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_4.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_4.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_4.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_4.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_4.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_4.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_4.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_4.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_4.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_4.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_4.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_4.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_4.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_4.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_4.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_4.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_4.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_4.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_4.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_4.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_4.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_4.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_4.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_4.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_4.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_4.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_4.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_4.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_4.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_4.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_4.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_4.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_4.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_4.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_4.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_4.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_4.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_4.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_4.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_4.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_4.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_4.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_4.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_4.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_4.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_4.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_4 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_5.inp /home/students/y12/popov/gamess-scratch/t_5.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_5.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_5.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_5.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_5.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_5.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_5.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_5.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_5.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_5.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_5.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_5.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_5.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_5.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_5.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_5.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_5.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_5.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_5.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_5.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_5.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_5.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_5.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_5.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_5.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_5.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_5.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_5.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_5.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_5.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_5.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_5.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_5.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_5.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_5.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_5.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_5.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_5.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_5.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_5.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_5.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_5.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_5.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_5.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_5.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_5.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_5.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_5.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_5.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_5.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_5.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_5.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_5.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_5.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_5.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_5.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_5.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_5.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_5.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_5.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_5.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_5.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_5.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_5.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_5.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_5.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_5.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_5.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_5.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_5.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_5.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_5.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_5.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_5.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_5.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_5.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_5.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_5.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_5.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_5.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_5.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_5.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_5.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_5.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_5.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_5.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_5.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_5.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_5.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_5.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_5.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_5.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_5.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_5.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_5.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_5.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_5.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_5.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_5.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_5.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_5.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_5.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_5.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_5.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_5.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_5.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_5.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_5.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_5.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_5.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_5.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_5 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_6.inp /home/students/y12/popov/gamess-scratch/t_6.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_6.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_6.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_6.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_6.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_6.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_6.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_6.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_6.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_6.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_6.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_6.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_6.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_6.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_6.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_6.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_6.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_6.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_6.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_6.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_6.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_6.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_6.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_6.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_6.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_6.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_6.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_6.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_6.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_6.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_6.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_6.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_6.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_6.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_6.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_6.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_6.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_6.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_6.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_6.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_6.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_6.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_6.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_6.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_6.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_6.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_6.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_6.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_6.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_6.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_6.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_6.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_6.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_6.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_6.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_6.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_6.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_6.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_6.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_6.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_6.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_6.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_6.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_6.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_6.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_6.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_6.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_6.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_6.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_6.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_6.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_6.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_6.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_6.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_6.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_6.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_6.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_6.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_6.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_6.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_6.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_6.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_6.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_6.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_6.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_6.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_6.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_6.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_6.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_6.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_6.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_6.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_6.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_6.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_6.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_6.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_6.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_6.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_6.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_6.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_6.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_6.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_6.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_6.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_6.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_6.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_6.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_6.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_6.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_6.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_6.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_6 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_7.inp /home/students/y12/popov/gamess-scratch/t_7.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_7.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_7.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_7.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_7.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_7.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_7.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_7.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_7.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_7.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_7.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_7.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_7.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_7.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_7.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_7.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_7.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_7.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_7.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_7.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_7.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_7.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_7.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_7.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_7.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_7.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_7.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_7.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_7.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_7.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_7.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_7.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_7.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_7.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_7.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_7.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_7.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_7.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_7.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_7.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_7.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_7.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_7.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_7.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_7.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_7.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_7.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_7.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_7.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_7.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_7.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_7.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_7.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_7.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_7.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_7.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_7.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_7.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_7.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_7.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_7.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_7.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_7.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_7.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_7.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_7.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_7.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_7.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_7.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_7.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_7.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_7.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_7.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_7.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_7.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_7.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_7.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_7.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_7.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_7.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_7.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_7.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_7.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_7.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_7.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_7.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_7.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_7.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_7.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_7.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_7.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_7.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_7.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_7.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_7.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_7.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_7.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_7.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_7.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_7.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_7.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_7.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_7.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_7.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_7.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_7.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_7.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_7.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_7.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_7.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_7.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_7 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_8.inp /home/students/y12/popov/gamess-scratch/t_8.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_8.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_8.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_8.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_8.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_8.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_8.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_8.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_8.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_8.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_8.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_8.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_8.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_8.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_8.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_8.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_8.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_8.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_8.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_8.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_8.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_8.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_8.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_8.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_8.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_8.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_8.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_8.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_8.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_8.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_8.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_8.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_8.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_8.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_8.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_8.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_8.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_8.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_8.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_8.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_8.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_8.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_8.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_8.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_8.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_8.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_8.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_8.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_8.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_8.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_8.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_8.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_8.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_8.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_8.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_8.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_8.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_8.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_8.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_8.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_8.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_8.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_8.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_8.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_8.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_8.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_8.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_8.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_8.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_8.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_8.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_8.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_8.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_8.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_8.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_8.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_8.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_8.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_8.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_8.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_8.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_8.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_8.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_8.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_8.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_8.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_8.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_8.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_8.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_8.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_8.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_8.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_8.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_8.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_8.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_8.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_8.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_8.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_8.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_8.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_8.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_8.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_8.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_8.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_8.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_8.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_8.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_8.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_8.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_8.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_8.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_8 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_9.inp /home/students/y12/popov/gamess-scratch/t_9.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_9.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_9.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_9.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_9.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_9.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_9.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_9.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_9.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_9.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_9.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_9.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_9.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_9.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_9.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_9.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_9.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_9.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_9.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_9.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_9.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_9.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_9.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_9.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_9.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_9.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_9.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_9.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_9.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_9.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_9.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_9.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_9.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_9.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_9.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_9.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_9.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_9.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_9.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_9.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_9.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_9.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_9.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_9.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_9.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_9.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_9.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_9.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_9.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_9.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_9.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_9.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_9.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_9.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_9.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_9.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_9.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_9.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_9.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_9.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_9.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_9.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_9.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_9.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_9.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_9.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_9.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_9.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_9.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_9.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_9.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_9.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_9.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_9.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_9.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_9.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_9.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_9.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_9.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_9.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_9.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_9.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_9.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_9.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_9.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_9.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_9.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_9.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_9.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_9.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_9.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_9.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_9.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_9.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_9.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_9.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_9.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_9.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_9.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_9.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_9.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_9.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_9.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_9.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_9.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_9.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_9.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_9.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_9.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_9.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_9.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_9 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_10.inp /home/students/y12/popov/gamess-scratch/t_10.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_10.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_10.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_10.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_10.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_10.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_10.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_10.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_10.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_10.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_10.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_10.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_10.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_10.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_10.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_10.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_10.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_10.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_10.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_10.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_10.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_10.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_10.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_10.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_10.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_10.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_10.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_10.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_10.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_10.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_10.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_10.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_10.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_10.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_10.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_10.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_10.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_10.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_10.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_10.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_10.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_10.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_10.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_10.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_10.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_10.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_10.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_10.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_10.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_10.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_10.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_10.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_10.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_10.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_10.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_10.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_10.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_10.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_10.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_10.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_10.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_10.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_10.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_10.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_10.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_10.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_10.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_10.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_10.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_10.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_10.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_10.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_10.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_10.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_10.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_10.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_10.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_10.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_10.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_10.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_10.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_10.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_10.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_10.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_10.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_10.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_10.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_10.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_10.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_10.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_10.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_10.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_10.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_10.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_10.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_10.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_10.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_10.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_10.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_10.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_10.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_10.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_10.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_10.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_10.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_10.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_10.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_10.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_10.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_10.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_10.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_10 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_11.inp /home/students/y12/popov/gamess-scratch/t_11.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_11.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_11.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_11.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_11.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_11.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_11.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_11.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_11.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_11.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_11.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_11.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_11.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_11.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_11.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_11.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_11.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_11.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_11.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_11.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_11.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_11.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_11.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_11.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_11.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_11.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_11.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_11.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_11.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_11.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_11.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_11.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_11.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_11.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_11.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_11.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_11.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_11.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_11.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_11.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_11.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_11.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_11.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_11.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_11.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_11.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_11.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_11.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_11.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_11.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_11.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_11.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_11.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_11.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_11.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_11.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_11.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_11.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_11.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_11.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_11.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_11.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_11.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_11.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_11.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_11.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_11.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_11.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_11.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_11.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_11.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_11.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_11.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_11.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_11.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_11.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_11.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_11.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_11.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_11.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_11.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_11.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_11.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_11.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_11.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_11.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_11.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_11.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_11.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_11.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_11.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_11.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_11.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_11.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_11.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_11.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_11.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_11.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_11.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_11.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_11.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_11.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_11.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_11.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_11.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_11.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_11.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_11.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_11.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_11.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_11.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_11 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_12.inp /home/students/y12/popov/gamess-scratch/t_12.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_12.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_12.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_12.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_12.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_12.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_12.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_12.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_12.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_12.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_12.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_12.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_12.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_12.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_12.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_12.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_12.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_12.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_12.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_12.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_12.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_12.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_12.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_12.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_12.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_12.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_12.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_12.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_12.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_12.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_12.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_12.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_12.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_12.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_12.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_12.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_12.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_12.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_12.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_12.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_12.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_12.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_12.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_12.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_12.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_12.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_12.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_12.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_12.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_12.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_12.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_12.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_12.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_12.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_12.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_12.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_12.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_12.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_12.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_12.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_12.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_12.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_12.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_12.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_12.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_12.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_12.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_12.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_12.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_12.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_12.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_12.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_12.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_12.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_12.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_12.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_12.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_12.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_12.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_12.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_12.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_12.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_12.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_12.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_12.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_12.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_12.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_12.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_12.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_12.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_12.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_12.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_12.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_12.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_12.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_12.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_12.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_12.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_12.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_12.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_12.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_12.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_12.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_12.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_12.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_12.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_12.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_12.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_12.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_12.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_12.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_12 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_13.inp /home/students/y12/popov/gamess-scratch/t_13.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_13.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_13.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_13.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_13.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_13.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_13.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_13.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_13.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_13.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_13.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_13.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_13.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_13.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_13.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_13.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_13.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_13.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_13.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_13.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_13.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_13.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_13.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_13.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_13.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_13.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_13.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_13.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_13.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_13.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_13.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_13.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_13.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_13.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_13.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_13.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_13.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_13.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_13.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_13.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_13.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_13.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_13.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_13.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_13.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_13.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_13.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_13.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_13.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_13.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_13.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_13.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_13.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_13.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_13.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_13.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_13.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_13.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_13.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_13.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_13.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_13.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_13.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_13.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_13.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_13.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_13.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_13.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_13.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_13.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_13.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_13.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_13.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_13.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_13.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_13.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_13.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_13.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_13.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_13.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_13.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_13.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_13.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_13.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_13.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_13.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_13.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_13.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_13.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_13.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_13.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_13.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_13.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_13.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_13.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_13.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_13.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_13.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_13.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_13.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_13.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_13.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_13.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_13.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_13.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_13.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_13.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_13.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_13.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_13.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_13.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_13 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_14.inp /home/students/y12/popov/gamess-scratch/t_14.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_14.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_14.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_14.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_14.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_14.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_14.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_14.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_14.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_14.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_14.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_14.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_14.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_14.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_14.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_14.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_14.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_14.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_14.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_14.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_14.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_14.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_14.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_14.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_14.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_14.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_14.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_14.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_14.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_14.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_14.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_14.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_14.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_14.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_14.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_14.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_14.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_14.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_14.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_14.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_14.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_14.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_14.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_14.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_14.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_14.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_14.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_14.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_14.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_14.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_14.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_14.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_14.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_14.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_14.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_14.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_14.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_14.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_14.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_14.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_14.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_14.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_14.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_14.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_14.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_14.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_14.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_14.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_14.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_14.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_14.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_14.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_14.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_14.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_14.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_14.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_14.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_14.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_14.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_14.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_14.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_14.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_14.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_14.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_14.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_14.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_14.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_14.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_14.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_14.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_14.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_14.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_14.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_14.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_14.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_14.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_14.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_14.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_14.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_14.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_14.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_14.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_14.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_14.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_14.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_14.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_14.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_14.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_14.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_14.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_14.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_14 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp t_15.inp /home/students/y12/popov/gamess-scratch/t_15.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/t_15.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/t_15.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/t_15.trj setenv RESTART /home/students/y12/popov/gamess-scratch/t_15.rst setenv INPUT /home/students/y12/popov/gamess-scratch/t_15.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/t_15.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/t_15.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/t_15.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/t_15.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/t_15.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/t_15.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/t_15.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/t_15.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/t_15.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/t_15.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/t_15.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/t_15.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/t_15.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/t_15.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/t_15.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/t_15.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/t_15.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/t_15.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/t_15.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/t_15.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/t_15.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/t_15.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/t_15.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/t_15.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/t_15.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/t_15.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/t_15.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/t_15.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/t_15.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/t_15.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/t_15.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/t_15.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/t_15.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/t_15.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/t_15.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/t_15.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/t_15.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/t_15.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/t_15.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/t_15.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/t_15.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/t_15.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/t_15.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/t_15.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/t_15.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/t_15.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/t_15.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/t_15.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/t_15.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/t_15.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/t_15.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/t_15.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/t_15.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/t_15.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/t_15.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/t_15.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/t_15.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/t_15.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/t_15.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/t_15.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/t_15.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/t_15.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/t_15.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/t_15.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/t_15.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/t_15.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/t_15.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/t_15.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/t_15.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/t_15.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/t_15.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/t_15.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/t_15.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/t_15.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/t_15.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/t_15.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/t_15.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/t_15.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/t_15.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/t_15.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/t_15.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/t_15.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/t_15.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/t_15.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/t_15.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/t_15.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/t_15.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/t_15.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/t_15.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/t_15.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/t_15.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/t_15.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/t_15.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/t_15.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/t_15.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/t_15.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/t_15.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/t_15.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/t_15.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/t_15.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/t_15.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/t_15.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/t_15.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/t_15.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/t_15.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x t_15 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo
from math import sin
a = np.loadtxt("torsion")
x_o=a[:,0]
y_o=a[:,1]
print "Initial data:", y_o
plt.plot(x_o, y_o, "ro")
plt.savefig('torsion.png')
plt.show()
Initial data: [-79.76467808 -79.76423369 -79.76306284 -79.76161482 -79.76044078 -79.75998276 -79.76044078 -79.76161482 -79.76306284 -79.76423369 -79.76467808 -79.76423369 -79.76306284 -79.76161482 -79.76044078 -79.75998276 -79.76044078 -79.76161482 -79.76306284 -79.76423369 -79.76467808 -79.76423369 -79.76306284 -79.76161482 -79.76044078 -79.75998276 -79.76044078 -79.76161482 -79.76306284 -79.76423369 -79.76467808]
Image(filename='torsion.png')
Попробуем увеличить шаг до 0.1 Å при изменении длины связи:
%%bash
rm -rf ~/gamess-scratch/
rm bond01
for i in {-5..25}; do
nb=$(echo "scale=5; 1.52986 + $i/10" | bc -l)
sed "s/cc=1.52986/cc=$nb/" et.inp > b01_${i}.inp
gms b01_${i}.inp 1 > b01_${i}.log
echo -n "$nb " >> bond01
awk '/TOTAL ENERGY =/{print $4}' b01_${i}.log >> bond01
done
cp b01_-5.inp /home/students/y12/popov/gamess-scratch/b01_-5.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_-5.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_-5.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_-5.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_-5.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_-5.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_-5.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_-5.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_-5.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_-5.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_-5.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_-5.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_-5.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_-5.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_-5.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_-5.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_-5.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_-5.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_-5.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_-5.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_-5.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_-5.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_-5.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_-5.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_-5.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_-5.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_-5.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_-5.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_-5.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_-5.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_-5.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_-5.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_-5.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_-5.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_-5.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_-5.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_-5.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_-5.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_-5.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_-5.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_-5.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_-5.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_-5.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_-5.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_-5.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_-5.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_-5.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_-5.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_-5.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_-5.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_-5.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_-5.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_-5.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_-5.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_-5.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_-5.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_-5.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_-5.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_-5.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_-5.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_-5.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_-5.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_-5.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_-5.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_-5.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_-5.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_-5.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_-5.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_-5.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_-5.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_-5.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_-5.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_-5.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_-5.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_-5.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_-5.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_-5.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_-5.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_-5.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_-5.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_-5.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_-5.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_-5.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_-5.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_-5.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_-5.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_-5.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_-5.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_-5.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_-5.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_-5.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_-5.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_-5.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_-5.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_-5.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_-5.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_-5.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_-5.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_-5.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_-5.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_-5.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_-5.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_-5.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_-5.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_-5.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_-5.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_-5.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_-5.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_-5.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_-5.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_-5.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_-5 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_-4.inp /home/students/y12/popov/gamess-scratch/b01_-4.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_-4.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_-4.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_-4.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_-4.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_-4.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_-4.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_-4.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_-4.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_-4.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_-4.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_-4.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_-4.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_-4.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_-4.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_-4.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_-4.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_-4.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_-4.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_-4.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_-4.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_-4.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_-4.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_-4.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_-4.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_-4.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_-4.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_-4.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_-4.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_-4.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_-4.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_-4.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_-4.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_-4.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_-4.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_-4.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_-4.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_-4.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_-4.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_-4.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_-4.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_-4.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_-4.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_-4.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_-4.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_-4.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_-4.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_-4.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_-4.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_-4.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_-4.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_-4.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_-4.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_-4.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_-4.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_-4.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_-4.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_-4.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_-4.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_-4.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_-4.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_-4.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_-4.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_-4.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_-4.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_-4.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_-4.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_-4.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_-4.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_-4.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_-4.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_-4.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_-4.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_-4.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_-4.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_-4.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_-4.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_-4.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_-4.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_-4.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_-4.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_-4.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_-4.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_-4.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_-4.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_-4.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_-4.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_-4.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_-4.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_-4.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_-4.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_-4.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_-4.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_-4.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_-4.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_-4.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_-4.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_-4.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_-4.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_-4.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_-4.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_-4.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_-4.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_-4.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_-4.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_-4.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_-4.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_-4.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_-4.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_-4.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_-4.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_-4 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_-3.inp /home/students/y12/popov/gamess-scratch/b01_-3.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_-3.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_-3.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_-3.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_-3.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_-3.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_-3.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_-3.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_-3.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_-3.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_-3.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_-3.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_-3.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_-3.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_-3.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_-3.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_-3.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_-3.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_-3.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_-3.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_-3.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_-3.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_-3.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_-3.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_-3.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_-3.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_-3.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_-3.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_-3.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_-3.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_-3.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_-3.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_-3.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_-3.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_-3.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_-3.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_-3.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_-3.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_-3.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_-3.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_-3.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_-3.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_-3.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_-3.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_-3.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_-3.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_-3.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_-3.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_-3.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_-3.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_-3.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_-3.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_-3.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_-3.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_-3.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_-3.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_-3.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_-3.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_-3.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_-3.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_-3.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_-3.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_-3.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_-3.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_-3.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_-3.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_-3.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_-3.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_-3.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_-3.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_-3.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_-3.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_-3.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_-3.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_-3.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_-3.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_-3.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_-3.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_-3.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_-3.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_-3.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_-3.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_-3.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_-3.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_-3.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_-3.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_-3.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_-3.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_-3.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_-3.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_-3.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_-3.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_-3.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_-3.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_-3.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_-3.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_-3.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_-3.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_-3.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_-3.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_-3.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_-3.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_-3.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_-3.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_-3.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_-3.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_-3.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_-3.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_-3.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_-3.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_-3.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_-3 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_-2.inp /home/students/y12/popov/gamess-scratch/b01_-2.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_-2.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_-2.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_-2.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_-2.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_-2.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_-2.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_-2.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_-2.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_-2.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_-2.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_-2.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_-2.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_-2.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_-2.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_-2.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_-2.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_-2.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_-2.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_-2.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_-2.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_-2.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_-2.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_-2.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_-2.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_-2.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_-2.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_-2.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_-2.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_-2.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_-2.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_-2.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_-2.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_-2.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_-2.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_-2.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_-2.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_-2.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_-2.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_-2.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_-2.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_-2.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_-2.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_-2.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_-2.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_-2.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_-2.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_-2.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_-2.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_-2.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_-2.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_-2.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_-2.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_-2.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_-2.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_-2.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_-2.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_-2.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_-2.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_-2.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_-2.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_-2.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_-2.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_-2.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_-2.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_-2.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_-2.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_-2.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_-2.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_-2.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_-2.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_-2.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_-2.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_-2.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_-2.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_-2.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_-2.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_-2.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_-2.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_-2.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_-2.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_-2.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_-2.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_-2.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_-2.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_-2.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_-2.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_-2.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_-2.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_-2.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_-2.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_-2.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_-2.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_-2.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_-2.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_-2.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_-2.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_-2.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_-2.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_-2.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_-2.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_-2.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_-2.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_-2.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_-2.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_-2.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_-2.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_-2.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_-2.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_-2.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_-2.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_-2 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_-1.inp /home/students/y12/popov/gamess-scratch/b01_-1.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_-1.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_-1.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_-1.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_-1.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_-1.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_-1.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_-1.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_-1.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_-1.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_-1.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_-1.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_-1.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_-1.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_-1.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_-1.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_-1.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_-1.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_-1.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_-1.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_-1.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_-1.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_-1.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_-1.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_-1.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_-1.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_-1.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_-1.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_-1.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_-1.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_-1.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_-1.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_-1.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_-1.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_-1.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_-1.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_-1.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_-1.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_-1.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_-1.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_-1.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_-1.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_-1.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_-1.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_-1.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_-1.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_-1.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_-1.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_-1.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_-1.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_-1.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_-1.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_-1.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_-1.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_-1.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_-1.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_-1.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_-1.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_-1.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_-1.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_-1.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_-1.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_-1.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_-1.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_-1.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_-1.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_-1.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_-1.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_-1.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_-1.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_-1.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_-1.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_-1.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_-1.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_-1.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_-1.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_-1.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_-1.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_-1.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_-1.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_-1.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_-1.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_-1.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_-1.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_-1.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_-1.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_-1.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_-1.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_-1.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_-1.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_-1.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_-1.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_-1.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_-1.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_-1.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_-1.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_-1.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_-1.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_-1.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_-1.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_-1.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_-1.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_-1.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_-1.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_-1.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_-1.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_-1.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_-1.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_-1.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_-1.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_-1.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_-1 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_0.inp /home/students/y12/popov/gamess-scratch/b01_0.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_0.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_0.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_0.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_0.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_0.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_0.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_0.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_0.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_0.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_0.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_0.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_0.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_0.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_0.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_0.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_0.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_0.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_0.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_0.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_0.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_0.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_0.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_0.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_0.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_0.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_0.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_0.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_0.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_0.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_0.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_0.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_0.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_0.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_0.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_0.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_0.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_0.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_0.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_0.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_0.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_0.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_0.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_0.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_0.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_0.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_0.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_0.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_0.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_0.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_0.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_0.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_0.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_0.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_0.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_0.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_0.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_0.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_0.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_0.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_0.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_0.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_0.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_0.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_0.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_0.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_0.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_0.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_0.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_0.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_0.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_0.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_0.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_0.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_0.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_0.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_0.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_0.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_0.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_0.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_0.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_0.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_0.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_0.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_0.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_0.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_0.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_0.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_0.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_0.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_0.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_0.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_0.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_0.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_0.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_0.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_0.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_0.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_0.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_0.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_0.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_0.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_0.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_0.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_0.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_0.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_0.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_0.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_0.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_0.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_0.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_0 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_1.inp /home/students/y12/popov/gamess-scratch/b01_1.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_1.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_1.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_1.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_1.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_1.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_1.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_1.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_1.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_1.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_1.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_1.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_1.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_1.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_1.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_1.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_1.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_1.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_1.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_1.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_1.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_1.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_1.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_1.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_1.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_1.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_1.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_1.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_1.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_1.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_1.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_1.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_1.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_1.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_1.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_1.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_1.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_1.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_1.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_1.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_1.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_1.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_1.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_1.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_1.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_1.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_1.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_1.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_1.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_1.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_1.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_1.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_1.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_1.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_1.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_1.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_1.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_1.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_1.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_1.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_1.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_1.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_1.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_1.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_1.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_1.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_1.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_1.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_1.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_1.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_1.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_1.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_1.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_1.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_1.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_1.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_1.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_1.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_1.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_1.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_1.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_1.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_1.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_1.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_1.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_1.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_1.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_1.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_1.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_1.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_1.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_1.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_1.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_1.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_1.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_1.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_1.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_1.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_1.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_1.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_1.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_1.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_1.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_1.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_1.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_1.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_1.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_1.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_1.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_1.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_1.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_1 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_2.inp /home/students/y12/popov/gamess-scratch/b01_2.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_2.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_2.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_2.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_2.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_2.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_2.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_2.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_2.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_2.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_2.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_2.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_2.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_2.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_2.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_2.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_2.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_2.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_2.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_2.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_2.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_2.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_2.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_2.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_2.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_2.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_2.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_2.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_2.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_2.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_2.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_2.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_2.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_2.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_2.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_2.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_2.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_2.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_2.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_2.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_2.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_2.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_2.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_2.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_2.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_2.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_2.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_2.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_2.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_2.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_2.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_2.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_2.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_2.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_2.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_2.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_2.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_2.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_2.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_2.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_2.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_2.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_2.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_2.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_2.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_2.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_2.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_2.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_2.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_2.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_2.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_2.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_2.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_2.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_2.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_2.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_2.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_2.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_2.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_2.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_2.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_2.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_2.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_2.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_2.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_2.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_2.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_2.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_2.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_2.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_2.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_2.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_2.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_2.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_2.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_2.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_2.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_2.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_2.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_2.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_2.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_2.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_2.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_2.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_2.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_2.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_2.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_2.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_2.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_2.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_2.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_2 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_3.inp /home/students/y12/popov/gamess-scratch/b01_3.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_3.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_3.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_3.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_3.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_3.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_3.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_3.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_3.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_3.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_3.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_3.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_3.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_3.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_3.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_3.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_3.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_3.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_3.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_3.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_3.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_3.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_3.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_3.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_3.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_3.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_3.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_3.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_3.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_3.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_3.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_3.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_3.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_3.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_3.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_3.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_3.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_3.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_3.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_3.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_3.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_3.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_3.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_3.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_3.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_3.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_3.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_3.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_3.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_3.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_3.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_3.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_3.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_3.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_3.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_3.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_3.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_3.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_3.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_3.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_3.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_3.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_3.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_3.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_3.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_3.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_3.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_3.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_3.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_3.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_3.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_3.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_3.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_3.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_3.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_3.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_3.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_3.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_3.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_3.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_3.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_3.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_3.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_3.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_3.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_3.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_3.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_3.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_3.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_3.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_3.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_3.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_3.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_3.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_3.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_3.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_3.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_3.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_3.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_3.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_3.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_3.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_3.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_3.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_3.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_3.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_3.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_3.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_3.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_3.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_3.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_3 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_4.inp /home/students/y12/popov/gamess-scratch/b01_4.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_4.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_4.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_4.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_4.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_4.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_4.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_4.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_4.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_4.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_4.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_4.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_4.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_4.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_4.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_4.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_4.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_4.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_4.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_4.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_4.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_4.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_4.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_4.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_4.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_4.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_4.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_4.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_4.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_4.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_4.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_4.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_4.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_4.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_4.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_4.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_4.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_4.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_4.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_4.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_4.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_4.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_4.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_4.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_4.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_4.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_4.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_4.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_4.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_4.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_4.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_4.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_4.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_4.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_4.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_4.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_4.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_4.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_4.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_4.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_4.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_4.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_4.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_4.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_4.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_4.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_4.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_4.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_4.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_4.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_4.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_4.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_4.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_4.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_4.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_4.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_4.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_4.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_4.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_4.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_4.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_4.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_4.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_4.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_4.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_4.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_4.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_4.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_4.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_4.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_4.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_4.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_4.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_4.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_4.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_4.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_4.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_4.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_4.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_4.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_4.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_4.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_4.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_4.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_4.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_4.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_4.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_4.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_4.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_4.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_4.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_4 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_5.inp /home/students/y12/popov/gamess-scratch/b01_5.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_5.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_5.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_5.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_5.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_5.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_5.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_5.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_5.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_5.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_5.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_5.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_5.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_5.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_5.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_5.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_5.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_5.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_5.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_5.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_5.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_5.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_5.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_5.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_5.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_5.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_5.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_5.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_5.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_5.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_5.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_5.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_5.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_5.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_5.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_5.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_5.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_5.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_5.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_5.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_5.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_5.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_5.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_5.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_5.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_5.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_5.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_5.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_5.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_5.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_5.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_5.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_5.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_5.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_5.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_5.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_5.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_5.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_5.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_5.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_5.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_5.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_5.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_5.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_5.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_5.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_5.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_5.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_5.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_5.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_5.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_5.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_5.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_5.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_5.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_5.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_5.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_5.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_5.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_5.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_5.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_5.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_5.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_5.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_5.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_5.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_5.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_5.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_5.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_5.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_5.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_5.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_5.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_5.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_5.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_5.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_5.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_5.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_5.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_5.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_5.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_5.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_5.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_5.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_5.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_5.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_5.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_5.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_5.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_5.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_5.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_5 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_6.inp /home/students/y12/popov/gamess-scratch/b01_6.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_6.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_6.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_6.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_6.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_6.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_6.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_6.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_6.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_6.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_6.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_6.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_6.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_6.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_6.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_6.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_6.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_6.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_6.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_6.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_6.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_6.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_6.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_6.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_6.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_6.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_6.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_6.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_6.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_6.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_6.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_6.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_6.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_6.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_6.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_6.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_6.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_6.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_6.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_6.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_6.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_6.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_6.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_6.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_6.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_6.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_6.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_6.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_6.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_6.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_6.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_6.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_6.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_6.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_6.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_6.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_6.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_6.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_6.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_6.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_6.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_6.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_6.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_6.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_6.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_6.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_6.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_6.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_6.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_6.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_6.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_6.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_6.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_6.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_6.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_6.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_6.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_6.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_6.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_6.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_6.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_6.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_6.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_6.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_6.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_6.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_6.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_6.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_6.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_6.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_6.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_6.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_6.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_6.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_6.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_6.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_6.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_6.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_6.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_6.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_6.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_6.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_6.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_6.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_6.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_6.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_6.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_6.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_6.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_6.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_6.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_6 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_7.inp /home/students/y12/popov/gamess-scratch/b01_7.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_7.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_7.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_7.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_7.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_7.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_7.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_7.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_7.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_7.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_7.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_7.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_7.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_7.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_7.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_7.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_7.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_7.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_7.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_7.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_7.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_7.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_7.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_7.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_7.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_7.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_7.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_7.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_7.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_7.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_7.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_7.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_7.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_7.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_7.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_7.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_7.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_7.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_7.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_7.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_7.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_7.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_7.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_7.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_7.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_7.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_7.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_7.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_7.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_7.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_7.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_7.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_7.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_7.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_7.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_7.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_7.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_7.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_7.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_7.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_7.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_7.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_7.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_7.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_7.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_7.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_7.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_7.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_7.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_7.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_7.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_7.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_7.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_7.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_7.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_7.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_7.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_7.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_7.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_7.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_7.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_7.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_7.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_7.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_7.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_7.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_7.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_7.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_7.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_7.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_7.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_7.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_7.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_7.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_7.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_7.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_7.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_7.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_7.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_7.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_7.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_7.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_7.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_7.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_7.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_7.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_7.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_7.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_7.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_7.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_7.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_7 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_8.inp /home/students/y12/popov/gamess-scratch/b01_8.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_8.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_8.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_8.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_8.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_8.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_8.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_8.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_8.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_8.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_8.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_8.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_8.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_8.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_8.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_8.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_8.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_8.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_8.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_8.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_8.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_8.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_8.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_8.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_8.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_8.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_8.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_8.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_8.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_8.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_8.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_8.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_8.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_8.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_8.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_8.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_8.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_8.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_8.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_8.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_8.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_8.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_8.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_8.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_8.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_8.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_8.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_8.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_8.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_8.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_8.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_8.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_8.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_8.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_8.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_8.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_8.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_8.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_8.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_8.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_8.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_8.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_8.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_8.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_8.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_8.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_8.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_8.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_8.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_8.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_8.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_8.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_8.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_8.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_8.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_8.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_8.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_8.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_8.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_8.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_8.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_8.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_8.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_8.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_8.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_8.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_8.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_8.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_8.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_8.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_8.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_8.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_8.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_8.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_8.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_8.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_8.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_8.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_8.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_8.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_8.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_8.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_8.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_8.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_8.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_8.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_8.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_8.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_8.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_8.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_8.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_8 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_9.inp /home/students/y12/popov/gamess-scratch/b01_9.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_9.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_9.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_9.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_9.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_9.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_9.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_9.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_9.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_9.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_9.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_9.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_9.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_9.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_9.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_9.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_9.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_9.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_9.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_9.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_9.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_9.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_9.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_9.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_9.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_9.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_9.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_9.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_9.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_9.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_9.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_9.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_9.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_9.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_9.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_9.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_9.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_9.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_9.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_9.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_9.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_9.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_9.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_9.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_9.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_9.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_9.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_9.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_9.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_9.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_9.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_9.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_9.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_9.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_9.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_9.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_9.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_9.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_9.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_9.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_9.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_9.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_9.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_9.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_9.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_9.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_9.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_9.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_9.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_9.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_9.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_9.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_9.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_9.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_9.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_9.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_9.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_9.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_9.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_9.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_9.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_9.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_9.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_9.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_9.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_9.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_9.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_9.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_9.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_9.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_9.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_9.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_9.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_9.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_9.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_9.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_9.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_9.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_9.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_9.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_9.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_9.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_9.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_9.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_9.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_9.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_9.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_9.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_9.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_9.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_9.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_9 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_10.inp /home/students/y12/popov/gamess-scratch/b01_10.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_10.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_10.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_10.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_10.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_10.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_10.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_10.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_10.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_10.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_10.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_10.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_10.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_10.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_10.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_10.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_10.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_10.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_10.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_10.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_10.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_10.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_10.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_10.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_10.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_10.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_10.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_10.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_10.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_10.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_10.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_10.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_10.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_10.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_10.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_10.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_10.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_10.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_10.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_10.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_10.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_10.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_10.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_10.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_10.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_10.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_10.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_10.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_10.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_10.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_10.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_10.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_10.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_10.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_10.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_10.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_10.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_10.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_10.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_10.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_10.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_10.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_10.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_10.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_10.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_10.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_10.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_10.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_10.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_10.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_10.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_10.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_10.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_10.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_10.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_10.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_10.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_10.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_10.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_10.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_10.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_10.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_10.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_10.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_10.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_10.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_10.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_10.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_10.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_10.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_10.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_10.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_10.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_10.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_10.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_10.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_10.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_10.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_10.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_10.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_10.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_10.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_10.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_10.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_10.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_10.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_10.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_10.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_10.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_10.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_10.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_10 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_11.inp /home/students/y12/popov/gamess-scratch/b01_11.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_11.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_11.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_11.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_11.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_11.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_11.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_11.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_11.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_11.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_11.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_11.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_11.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_11.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_11.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_11.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_11.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_11.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_11.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_11.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_11.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_11.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_11.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_11.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_11.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_11.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_11.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_11.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_11.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_11.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_11.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_11.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_11.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_11.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_11.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_11.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_11.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_11.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_11.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_11.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_11.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_11.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_11.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_11.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_11.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_11.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_11.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_11.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_11.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_11.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_11.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_11.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_11.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_11.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_11.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_11.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_11.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_11.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_11.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_11.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_11.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_11.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_11.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_11.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_11.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_11.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_11.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_11.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_11.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_11.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_11.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_11.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_11.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_11.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_11.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_11.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_11.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_11.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_11.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_11.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_11.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_11.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_11.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_11.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_11.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_11.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_11.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_11.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_11.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_11.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_11.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_11.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_11.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_11.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_11.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_11.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_11.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_11.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_11.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_11.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_11.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_11.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_11.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_11.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_11.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_11.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_11.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_11.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_11.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_11.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_11.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_11 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_12.inp /home/students/y12/popov/gamess-scratch/b01_12.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_12.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_12.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_12.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_12.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_12.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_12.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_12.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_12.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_12.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_12.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_12.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_12.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_12.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_12.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_12.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_12.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_12.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_12.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_12.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_12.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_12.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_12.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_12.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_12.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_12.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_12.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_12.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_12.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_12.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_12.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_12.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_12.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_12.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_12.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_12.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_12.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_12.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_12.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_12.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_12.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_12.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_12.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_12.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_12.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_12.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_12.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_12.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_12.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_12.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_12.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_12.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_12.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_12.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_12.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_12.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_12.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_12.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_12.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_12.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_12.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_12.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_12.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_12.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_12.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_12.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_12.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_12.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_12.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_12.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_12.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_12.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_12.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_12.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_12.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_12.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_12.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_12.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_12.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_12.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_12.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_12.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_12.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_12.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_12.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_12.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_12.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_12.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_12.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_12.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_12.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_12.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_12.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_12.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_12.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_12.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_12.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_12.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_12.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_12.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_12.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_12.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_12.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_12.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_12.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_12.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_12.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_12.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_12.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_12.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_12.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_12 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_13.inp /home/students/y12/popov/gamess-scratch/b01_13.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_13.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_13.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_13.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_13.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_13.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_13.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_13.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_13.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_13.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_13.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_13.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_13.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_13.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_13.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_13.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_13.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_13.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_13.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_13.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_13.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_13.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_13.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_13.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_13.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_13.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_13.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_13.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_13.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_13.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_13.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_13.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_13.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_13.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_13.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_13.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_13.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_13.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_13.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_13.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_13.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_13.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_13.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_13.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_13.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_13.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_13.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_13.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_13.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_13.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_13.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_13.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_13.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_13.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_13.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_13.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_13.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_13.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_13.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_13.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_13.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_13.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_13.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_13.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_13.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_13.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_13.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_13.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_13.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_13.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_13.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_13.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_13.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_13.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_13.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_13.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_13.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_13.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_13.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_13.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_13.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_13.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_13.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_13.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_13.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_13.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_13.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_13.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_13.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_13.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_13.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_13.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_13.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_13.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_13.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_13.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_13.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_13.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_13.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_13.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_13.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_13.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_13.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_13.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_13.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_13.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_13.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_13.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_13.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_13.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_13.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_13 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_14.inp /home/students/y12/popov/gamess-scratch/b01_14.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_14.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_14.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_14.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_14.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_14.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_14.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_14.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_14.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_14.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_14.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_14.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_14.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_14.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_14.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_14.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_14.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_14.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_14.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_14.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_14.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_14.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_14.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_14.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_14.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_14.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_14.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_14.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_14.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_14.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_14.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_14.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_14.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_14.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_14.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_14.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_14.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_14.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_14.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_14.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_14.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_14.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_14.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_14.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_14.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_14.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_14.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_14.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_14.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_14.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_14.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_14.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_14.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_14.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_14.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_14.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_14.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_14.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_14.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_14.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_14.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_14.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_14.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_14.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_14.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_14.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_14.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_14.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_14.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_14.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_14.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_14.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_14.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_14.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_14.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_14.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_14.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_14.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_14.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_14.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_14.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_14.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_14.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_14.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_14.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_14.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_14.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_14.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_14.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_14.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_14.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_14.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_14.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_14.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_14.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_14.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_14.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_14.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_14.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_14.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_14.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_14.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_14.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_14.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_14.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_14.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_14.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_14.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_14.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_14.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_14.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_14 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_15.inp /home/students/y12/popov/gamess-scratch/b01_15.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_15.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_15.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_15.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_15.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_15.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_15.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_15.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_15.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_15.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_15.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_15.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_15.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_15.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_15.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_15.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_15.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_15.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_15.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_15.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_15.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_15.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_15.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_15.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_15.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_15.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_15.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_15.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_15.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_15.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_15.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_15.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_15.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_15.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_15.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_15.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_15.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_15.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_15.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_15.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_15.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_15.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_15.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_15.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_15.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_15.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_15.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_15.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_15.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_15.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_15.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_15.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_15.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_15.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_15.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_15.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_15.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_15.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_15.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_15.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_15.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_15.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_15.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_15.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_15.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_15.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_15.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_15.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_15.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_15.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_15.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_15.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_15.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_15.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_15.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_15.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_15.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_15.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_15.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_15.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_15.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_15.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_15.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_15.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_15.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_15.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_15.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_15.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_15.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_15.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_15.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_15.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_15.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_15.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_15.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_15.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_15.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_15.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_15.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_15.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_15.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_15.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_15.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_15.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_15.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_15.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_15.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_15.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_15.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_15.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_15.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_15 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_16.inp /home/students/y12/popov/gamess-scratch/b01_16.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_16.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_16.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_16.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_16.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_16.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_16.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_16.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_16.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_16.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_16.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_16.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_16.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_16.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_16.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_16.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_16.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_16.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_16.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_16.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_16.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_16.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_16.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_16.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_16.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_16.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_16.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_16.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_16.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_16.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_16.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_16.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_16.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_16.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_16.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_16.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_16.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_16.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_16.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_16.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_16.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_16.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_16.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_16.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_16.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_16.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_16.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_16.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_16.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_16.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_16.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_16.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_16.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_16.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_16.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_16.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_16.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_16.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_16.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_16.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_16.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_16.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_16.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_16.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_16.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_16.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_16.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_16.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_16.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_16.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_16.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_16.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_16.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_16.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_16.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_16.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_16.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_16.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_16.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_16.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_16.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_16.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_16.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_16.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_16.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_16.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_16.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_16.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_16.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_16.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_16.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_16.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_16.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_16.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_16.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_16.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_16.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_16.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_16.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_16.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_16.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_16.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_16.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_16.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_16.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_16.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_16.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_16.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_16.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_16.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_16.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_16 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_17.inp /home/students/y12/popov/gamess-scratch/b01_17.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_17.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_17.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_17.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_17.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_17.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_17.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_17.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_17.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_17.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_17.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_17.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_17.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_17.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_17.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_17.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_17.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_17.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_17.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_17.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_17.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_17.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_17.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_17.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_17.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_17.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_17.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_17.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_17.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_17.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_17.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_17.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_17.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_17.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_17.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_17.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_17.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_17.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_17.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_17.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_17.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_17.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_17.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_17.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_17.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_17.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_17.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_17.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_17.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_17.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_17.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_17.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_17.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_17.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_17.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_17.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_17.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_17.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_17.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_17.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_17.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_17.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_17.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_17.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_17.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_17.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_17.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_17.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_17.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_17.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_17.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_17.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_17.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_17.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_17.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_17.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_17.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_17.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_17.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_17.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_17.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_17.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_17.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_17.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_17.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_17.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_17.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_17.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_17.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_17.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_17.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_17.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_17.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_17.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_17.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_17.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_17.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_17.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_17.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_17.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_17.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_17.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_17.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_17.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_17.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_17.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_17.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_17.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_17.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_17.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_17.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_17 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_18.inp /home/students/y12/popov/gamess-scratch/b01_18.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_18.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_18.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_18.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_18.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_18.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_18.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_18.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_18.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_18.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_18.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_18.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_18.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_18.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_18.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_18.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_18.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_18.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_18.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_18.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_18.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_18.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_18.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_18.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_18.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_18.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_18.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_18.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_18.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_18.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_18.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_18.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_18.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_18.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_18.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_18.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_18.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_18.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_18.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_18.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_18.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_18.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_18.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_18.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_18.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_18.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_18.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_18.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_18.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_18.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_18.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_18.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_18.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_18.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_18.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_18.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_18.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_18.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_18.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_18.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_18.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_18.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_18.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_18.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_18.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_18.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_18.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_18.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_18.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_18.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_18.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_18.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_18.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_18.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_18.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_18.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_18.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_18.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_18.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_18.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_18.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_18.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_18.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_18.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_18.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_18.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_18.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_18.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_18.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_18.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_18.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_18.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_18.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_18.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_18.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_18.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_18.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_18.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_18.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_18.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_18.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_18.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_18.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_18.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_18.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_18.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_18.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_18.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_18.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_18.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_18.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_18 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_19.inp /home/students/y12/popov/gamess-scratch/b01_19.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_19.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_19.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_19.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_19.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_19.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_19.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_19.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_19.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_19.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_19.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_19.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_19.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_19.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_19.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_19.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_19.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_19.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_19.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_19.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_19.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_19.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_19.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_19.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_19.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_19.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_19.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_19.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_19.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_19.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_19.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_19.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_19.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_19.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_19.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_19.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_19.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_19.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_19.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_19.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_19.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_19.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_19.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_19.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_19.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_19.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_19.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_19.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_19.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_19.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_19.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_19.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_19.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_19.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_19.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_19.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_19.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_19.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_19.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_19.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_19.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_19.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_19.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_19.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_19.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_19.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_19.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_19.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_19.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_19.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_19.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_19.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_19.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_19.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_19.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_19.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_19.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_19.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_19.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_19.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_19.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_19.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_19.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_19.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_19.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_19.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_19.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_19.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_19.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_19.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_19.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_19.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_19.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_19.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_19.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_19.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_19.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_19.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_19.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_19.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_19.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_19.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_19.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_19.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_19.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_19.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_19.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_19.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_19.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_19.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_19.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_19 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_20.inp /home/students/y12/popov/gamess-scratch/b01_20.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_20.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_20.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_20.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_20.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_20.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_20.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_20.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_20.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_20.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_20.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_20.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_20.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_20.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_20.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_20.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_20.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_20.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_20.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_20.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_20.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_20.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_20.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_20.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_20.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_20.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_20.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_20.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_20.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_20.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_20.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_20.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_20.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_20.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_20.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_20.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_20.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_20.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_20.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_20.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_20.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_20.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_20.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_20.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_20.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_20.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_20.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_20.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_20.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_20.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_20.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_20.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_20.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_20.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_20.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_20.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_20.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_20.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_20.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_20.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_20.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_20.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_20.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_20.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_20.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_20.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_20.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_20.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_20.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_20.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_20.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_20.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_20.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_20.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_20.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_20.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_20.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_20.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_20.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_20.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_20.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_20.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_20.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_20.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_20.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_20.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_20.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_20.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_20.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_20.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_20.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_20.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_20.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_20.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_20.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_20.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_20.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_20.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_20.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_20.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_20.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_20.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_20.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_20.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_20.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_20.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_20.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_20.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_20.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_20.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_20.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_20 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_21.inp /home/students/y12/popov/gamess-scratch/b01_21.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_21.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_21.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_21.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_21.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_21.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_21.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_21.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_21.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_21.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_21.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_21.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_21.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_21.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_21.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_21.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_21.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_21.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_21.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_21.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_21.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_21.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_21.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_21.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_21.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_21.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_21.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_21.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_21.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_21.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_21.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_21.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_21.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_21.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_21.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_21.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_21.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_21.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_21.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_21.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_21.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_21.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_21.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_21.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_21.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_21.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_21.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_21.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_21.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_21.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_21.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_21.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_21.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_21.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_21.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_21.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_21.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_21.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_21.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_21.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_21.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_21.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_21.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_21.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_21.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_21.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_21.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_21.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_21.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_21.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_21.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_21.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_21.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_21.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_21.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_21.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_21.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_21.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_21.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_21.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_21.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_21.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_21.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_21.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_21.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_21.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_21.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_21.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_21.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_21.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_21.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_21.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_21.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_21.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_21.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_21.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_21.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_21.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_21.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_21.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_21.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_21.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_21.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_21.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_21.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_21.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_21.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_21.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_21.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_21.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_21.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_21 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_22.inp /home/students/y12/popov/gamess-scratch/b01_22.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_22.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_22.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_22.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_22.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_22.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_22.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_22.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_22.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_22.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_22.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_22.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_22.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_22.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_22.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_22.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_22.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_22.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_22.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_22.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_22.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_22.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_22.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_22.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_22.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_22.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_22.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_22.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_22.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_22.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_22.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_22.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_22.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_22.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_22.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_22.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_22.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_22.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_22.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_22.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_22.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_22.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_22.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_22.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_22.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_22.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_22.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_22.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_22.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_22.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_22.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_22.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_22.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_22.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_22.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_22.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_22.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_22.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_22.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_22.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_22.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_22.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_22.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_22.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_22.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_22.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_22.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_22.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_22.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_22.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_22.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_22.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_22.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_22.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_22.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_22.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_22.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_22.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_22.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_22.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_22.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_22.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_22.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_22.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_22.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_22.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_22.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_22.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_22.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_22.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_22.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_22.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_22.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_22.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_22.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_22.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_22.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_22.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_22.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_22.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_22.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_22.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_22.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_22.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_22.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_22.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_22.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_22.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_22.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_22.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_22.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_22 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_23.inp /home/students/y12/popov/gamess-scratch/b01_23.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_23.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_23.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_23.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_23.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_23.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_23.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_23.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_23.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_23.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_23.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_23.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_23.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_23.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_23.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_23.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_23.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_23.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_23.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_23.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_23.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_23.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_23.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_23.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_23.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_23.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_23.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_23.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_23.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_23.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_23.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_23.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_23.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_23.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_23.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_23.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_23.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_23.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_23.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_23.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_23.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_23.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_23.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_23.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_23.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_23.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_23.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_23.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_23.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_23.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_23.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_23.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_23.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_23.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_23.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_23.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_23.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_23.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_23.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_23.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_23.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_23.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_23.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_23.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_23.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_23.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_23.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_23.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_23.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_23.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_23.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_23.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_23.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_23.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_23.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_23.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_23.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_23.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_23.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_23.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_23.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_23.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_23.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_23.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_23.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_23.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_23.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_23.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_23.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_23.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_23.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_23.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_23.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_23.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_23.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_23.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_23.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_23.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_23.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_23.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_23.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_23.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_23.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_23.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_23.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_23.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_23.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_23.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_23.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_23.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_23.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_23 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_24.inp /home/students/y12/popov/gamess-scratch/b01_24.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_24.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_24.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_24.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_24.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_24.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_24.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_24.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_24.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_24.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_24.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_24.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_24.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_24.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_24.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_24.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_24.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_24.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_24.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_24.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_24.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_24.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_24.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_24.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_24.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_24.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_24.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_24.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_24.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_24.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_24.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_24.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_24.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_24.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_24.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_24.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_24.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_24.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_24.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_24.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_24.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_24.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_24.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_24.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_24.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_24.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_24.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_24.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_24.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_24.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_24.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_24.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_24.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_24.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_24.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_24.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_24.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_24.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_24.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_24.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_24.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_24.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_24.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_24.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_24.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_24.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_24.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_24.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_24.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_24.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_24.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_24.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_24.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_24.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_24.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_24.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_24.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_24.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_24.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_24.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_24.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_24.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_24.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_24.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_24.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_24.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_24.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_24.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_24.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_24.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_24.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_24.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_24.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_24.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_24.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_24.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_24.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_24.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_24.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_24.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_24.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_24.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_24.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_24.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_24.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_24.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_24.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_24.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_24.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_24.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_24.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_24 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo mkdir: cannot create directory `/home/students/y12/popov/gamess-scratch': File exists cp b01_25.inp /home/students/y12/popov/gamess-scratch/b01_25.F05 unset echo setenv ERICFMT /usr/lib/gamess/ericfmt.dat setenv MCPPATH /usr/lib/gamess/mcpdata setenv EXTBAS /dev/null setenv NUCBAS /dev/null setenv MAKEFP /home/students/y12/popov/gamess-scratch/b01_25.efp setenv GAMMA /home/students/y12/popov/gamess-scratch/b01_25.gamma setenv TRAJECT /home/students/y12/popov/gamess-scratch/b01_25.trj setenv RESTART /home/students/y12/popov/gamess-scratch/b01_25.rst setenv INPUT /home/students/y12/popov/gamess-scratch/b01_25.F05 setenv PUNCH /home/students/y12/popov/gamess-scratch/b01_25.dat setenv AOINTS /home/students/y12/popov/gamess-scratch/b01_25.F08 setenv MOINTS /home/students/y12/popov/gamess-scratch/b01_25.F09 setenv DICTNRY /home/students/y12/popov/gamess-scratch/b01_25.F10 setenv DRTFILE /home/students/y12/popov/gamess-scratch/b01_25.F11 setenv CIVECTR /home/students/y12/popov/gamess-scratch/b01_25.F12 setenv CASINTS /home/students/y12/popov/gamess-scratch/b01_25.F13 setenv CIINTS /home/students/y12/popov/gamess-scratch/b01_25.F14 setenv WORK15 /home/students/y12/popov/gamess-scratch/b01_25.F15 setenv WORK16 /home/students/y12/popov/gamess-scratch/b01_25.F16 setenv CSFSAVE /home/students/y12/popov/gamess-scratch/b01_25.F17 setenv FOCKDER /home/students/y12/popov/gamess-scratch/b01_25.F18 setenv WORK19 /home/students/y12/popov/gamess-scratch/b01_25.F19 setenv DASORT /home/students/y12/popov/gamess-scratch/b01_25.F20 setenv DFTINTS /home/students/y12/popov/gamess-scratch/b01_25.F21 setenv DFTGRID /home/students/y12/popov/gamess-scratch/b01_25.F22 setenv JKFILE /home/students/y12/popov/gamess-scratch/b01_25.F23 setenv ORDINT /home/students/y12/popov/gamess-scratch/b01_25.F24 setenv EFPIND /home/students/y12/popov/gamess-scratch/b01_25.F25 setenv PCMDATA /home/students/y12/popov/gamess-scratch/b01_25.F26 setenv PCMINTS /home/students/y12/popov/gamess-scratch/b01_25.F27 setenv SVPWRK1 /home/students/y12/popov/gamess-scratch/b01_25.F26 setenv SVPWRK2 /home/students/y12/popov/gamess-scratch/b01_25.F27 setenv COSCAV /home/students/y12/popov/gamess-scratch/b01_25.F26 setenv COSDATA /home/students/y12/popov/gamess-scratch/b01_25.cosmo setenv COSPOT /home/students/y12/popov/gamess-scratch/b01_25.pot setenv MLTPL /home/students/y12/popov/gamess-scratch/b01_25.F28 setenv MLTPLT /home/students/y12/popov/gamess-scratch/b01_25.F29 setenv DAFL30 /home/students/y12/popov/gamess-scratch/b01_25.F30 setenv SOINTX /home/students/y12/popov/gamess-scratch/b01_25.F31 setenv SOINTY /home/students/y12/popov/gamess-scratch/b01_25.F32 setenv SOINTZ /home/students/y12/popov/gamess-scratch/b01_25.F33 setenv SORESC /home/students/y12/popov/gamess-scratch/b01_25.F34 setenv GCILIST /home/students/y12/popov/gamess-scratch/b01_25.F37 setenv HESSIAN /home/students/y12/popov/gamess-scratch/b01_25.F38 setenv QMMMTEI /home/students/y12/popov/gamess-scratch/b01_25.F39 setenv SOCCDAT /home/students/y12/popov/gamess-scratch/b01_25.F40 setenv AABB41 /home/students/y12/popov/gamess-scratch/b01_25.F41 setenv BBAA42 /home/students/y12/popov/gamess-scratch/b01_25.F42 setenv BBBB43 /home/students/y12/popov/gamess-scratch/b01_25.F43 setenv MCQD50 /home/students/y12/popov/gamess-scratch/b01_25.F50 setenv MCQD51 /home/students/y12/popov/gamess-scratch/b01_25.F51 setenv MCQD52 /home/students/y12/popov/gamess-scratch/b01_25.F52 setenv MCQD53 /home/students/y12/popov/gamess-scratch/b01_25.F53 setenv MCQD54 /home/students/y12/popov/gamess-scratch/b01_25.F54 setenv MCQD55 /home/students/y12/popov/gamess-scratch/b01_25.F55 setenv MCQD56 /home/students/y12/popov/gamess-scratch/b01_25.F56 setenv MCQD57 /home/students/y12/popov/gamess-scratch/b01_25.F57 setenv MCQD58 /home/students/y12/popov/gamess-scratch/b01_25.F58 setenv MCQD59 /home/students/y12/popov/gamess-scratch/b01_25.F59 setenv MCQD60 /home/students/y12/popov/gamess-scratch/b01_25.F60 setenv MCQD61 /home/students/y12/popov/gamess-scratch/b01_25.F61 setenv MCQD62 /home/students/y12/popov/gamess-scratch/b01_25.F62 setenv MCQD63 /home/students/y12/popov/gamess-scratch/b01_25.F63 setenv MCQD64 /home/students/y12/popov/gamess-scratch/b01_25.F64 setenv NMRINT1 /home/students/y12/popov/gamess-scratch/b01_25.F61 setenv NMRINT2 /home/students/y12/popov/gamess-scratch/b01_25.F62 setenv NMRINT3 /home/students/y12/popov/gamess-scratch/b01_25.F63 setenv NMRINT4 /home/students/y12/popov/gamess-scratch/b01_25.F64 setenv NMRINT5 /home/students/y12/popov/gamess-scratch/b01_25.F65 setenv NMRINT6 /home/students/y12/popov/gamess-scratch/b01_25.F66 setenv DCPHFH2 /home/students/y12/popov/gamess-scratch/b01_25.F67 setenv DCPHF21 /home/students/y12/popov/gamess-scratch/b01_25.F68 setenv ELNUINT /home/students/y12/popov/gamess-scratch/b01_25.F67 setenv NUNUINT /home/students/y12/popov/gamess-scratch/b01_25.F68 setenv GVVPT /home/students/y12/popov/gamess-scratch/b01_25.F69 setenv NUMOIN /home/students/y12/popov/gamess-scratch/b01_25.F69 setenv NUMOCAS /home/students/y12/popov/gamess-scratch/b01_25.F70 setenv NUELMO /home/students/y12/popov/gamess-scratch/b01_25.F71 setenv NUELCAS /home/students/y12/popov/gamess-scratch/b01_25.F72 setenv RIVMAT /home/students/y12/popov/gamess-scratch/b01_25.F51 setenv RIT2A /home/students/y12/popov/gamess-scratch/b01_25.F52 setenv RIT3A /home/students/y12/popov/gamess-scratch/b01_25.F53 setenv RIT2B /home/students/y12/popov/gamess-scratch/b01_25.F54 setenv RIT3B /home/students/y12/popov/gamess-scratch/b01_25.F55 setenv GMCREF /home/students/y12/popov/gamess-scratch/b01_25.F70 setenv GMCO2R /home/students/y12/popov/gamess-scratch/b01_25.F71 setenv GMCROC /home/students/y12/popov/gamess-scratch/b01_25.F72 setenv GMCOOC /home/students/y12/popov/gamess-scratch/b01_25.F73 setenv GMCCC0 /home/students/y12/popov/gamess-scratch/b01_25.F74 setenv GMCHMA /home/students/y12/popov/gamess-scratch/b01_25.F75 setenv GMCEI1 /home/students/y12/popov/gamess-scratch/b01_25.F76 setenv GMCEI2 /home/students/y12/popov/gamess-scratch/b01_25.F77 setenv GMCEOB /home/students/y12/popov/gamess-scratch/b01_25.F78 setenv GMCEDT /home/students/y12/popov/gamess-scratch/b01_25.F79 setenv GMCERF /home/students/y12/popov/gamess-scratch/b01_25.F80 setenv GMCHCR /home/students/y12/popov/gamess-scratch/b01_25.F81 setenv GMCGJK /home/students/y12/popov/gamess-scratch/b01_25.F82 setenv GMCGAI /home/students/y12/popov/gamess-scratch/b01_25.F83 setenv GMCGEO /home/students/y12/popov/gamess-scratch/b01_25.F84 setenv GMCTE1 /home/students/y12/popov/gamess-scratch/b01_25.F85 setenv GMCTE2 /home/students/y12/popov/gamess-scratch/b01_25.F86 setenv GMCHEF /home/students/y12/popov/gamess-scratch/b01_25.F87 setenv GMCMOL /home/students/y12/popov/gamess-scratch/b01_25.F88 setenv GMCMOS /home/students/y12/popov/gamess-scratch/b01_25.F89 setenv GMCWGT /home/students/y12/popov/gamess-scratch/b01_25.F90 setenv GMCRM2 /home/students/y12/popov/gamess-scratch/b01_25.F91 setenv GMCRM1 /home/students/y12/popov/gamess-scratch/b01_25.F92 setenv GMCR00 /home/students/y12/popov/gamess-scratch/b01_25.F93 setenv GMCRP1 /home/students/y12/popov/gamess-scratch/b01_25.F94 setenv GMCRP2 /home/students/y12/popov/gamess-scratch/b01_25.F95 setenv GMCVEF /home/students/y12/popov/gamess-scratch/b01_25.F96 setenv GMCDIN /home/students/y12/popov/gamess-scratch/b01_25.F97 setenv GMC2SZ /home/students/y12/popov/gamess-scratch/b01_25.F98 setenv GMCCCS /home/students/y12/popov/gamess-scratch/b01_25.F99 unset echo /usr/lib/gamess/ddikick.x /usr/lib/gamess/gamess.00.x b01_25 -ddi 1 1 kodomo.fbb.msu.ru -scr /home/students/y12/popov/gamess-scratch unset echo
import numpy as np
import matplotlib.pyplot as plt
a = np.loadtxt("bond01")
x_o=a[:,0]
y_o=a[:,1]
print "Initial data:", y_o
#Plot it
plt.plot(x_o, y_o, "ro", c='blue',alpha=0.5)
plt.savefig('bond01.png')
plt.show()
Initial data: [-79.41081226 -79.5828707 -79.68130832 -79.73393153 -79.75808863 -79.76467808 -79.76056892 -79.75011326 -79.73608904 -79.72027791 -79.70381899 -79.68742936 -79.67154945 -79.65644128 -79.6422535 -79.62906093 -79.61688781 -79.60572184 -79.5955237 -79.58623517 -79.57778627 -79.57010181 -79.56310682 -79.55673067 -79.55090992 -79.5455899 -79.540725 -79.53627812 -79.53221937 -79.52852405 -79.52517096]
Image(filename="bond01.png")
Кажется, эту зависимость можно попробовать описать потенциалом Морзе:
import numpy as np
import matplotlib.pyplot as plt
from scipy import optimize
a = np.loadtxt("bond01")
x_o=a[:,0]
y_o=a[:,1]
print "Initial data:", y_o
fitfunc = lambda p, x: p[0]*pow(1-np.e**(-p[1]*(x-p[2])),2) # Target function
errfunc = lambda p, x, y: fitfunc(p, x) - y # Error function
p0 = [-80,100,1.5] # Initial guess for the parameters
p1, success = optimize.leastsq(errfunc, p0[:], args=(x_o, y_o))
print "Optimized params:", p1
#Plot it
x = np.array([float(i)/10 for i in range(5,30)])
plt.plot(x_o, y_o, "ro",c='blue',alpha=0.5)
plt.plot(x_o, fitfunc(p1,x_o), "r-", alpha=0.5)
plt.savefig('bond001a.png')
plt.show()
Initial data: [-79.41081226 -79.5828707 -79.68130832 -79.73393153 -79.75808863 -79.76467808 -79.76056892 -79.75011326 -79.73608904 -79.72027791 -79.70381899 -79.68742936 -79.67154945 -79.65644128 -79.6422535 -79.62906093 -79.61688781 -79.60572184 -79.5955237 -79.58623517 -79.57778627 -79.57010181 -79.56310682 -79.55673067 -79.55090992 -79.5455899 -79.540725 -79.53627812 -79.53221937 -79.52852405 -79.52517096] Optimized params: [-79.63196941 87.7709387 1.03774931]
Image(filename="bond001a.png")
Определим точечные заряды на атомах этана:
%%bash
export PATH=${PATH}:/home/preps/golovin/progs/bin
babel -igamout b_0.log -opdb et.pdb
Ante_RED-1.5.pl et.pdb
[H[2J **************************************************************************** ** Ante_R.E.D. program (version 1.5) ** ** http://q4md-forcefieldtools.org/RED/ ** ** ** ** Distributed under the GNU General Public License ** ** ** ** Ante_R.E.D. developments were initiated in Prof. D.A. Case's lab. by ** ** R. Lelong,(1,2) P. Cieplak,(3) & F.-Y. Dupradeau (1,2) ** ** ** ** Ante_R.E.D. 1.x were developed in Amiens by ** ** F.-Y. Dupradeau(4) & P. Cieplak,(3) ** ** ** ** Ante_R.E.D. 2.0 is currently developed in Amiens by ** ** G. Klimerak,(4) P. Cieplak(3) & F.-Y. Dupradeau(4) ** **************************************************************************** ** (1) DMAG EA-3901 & Faculte de Pharmacie, UPJV, Amiens, France ** ** (2) The Scripps Research Institute, La Jolla, CA, USA ** ** (3) Sanford|Burnham Institute for Medical Research, La Jolla, CA, USA ** ** (4) UMR CNRS 6219 & UFR de Pharmacie, UPJV, Amiens, France ** **************************************************************************** Replace atom names by names used by R.E.D.-III.x/IV... [Done] Use 'CT' for C atoms connected to 2 or 3 H atoms... [Done] Add a number to each new atom name... [Done] Sort atoms by numbers... [Done] Sort atoms by atom names... [Done] Establish new connectivities between atoms... [Done] Create the P2N output file: et-out.p2n... [Done] Create a new PDB output file: et-out.pdb... [Done] Create a GAMESS-US input file: et-gam.inp... [Done] Create a PC-GAMESS input file: et-pcg.inp... [Done] Create a GAUSSIAN input file: et-gau.com... [Done] Create the information output file: et-info.txt... [Done] QM program inputs generated by Ante_R.E.D. only provides starting points: They should be manually adapted to consider the specificity of each case... **************************************************************************** ** Do you need a new feature which is not yet implemented in Ante_R.E.D.? ** ** contact the q4md force field tools team @ ** ** contact@q4md-forcefieldtools.org ** ** Regularly look for bug fixes at the R.E.D. Home Page ** ** ---- ** ** Visit R.E.D. Server @ http://q4md-forcefieldtools.org/REDS/ as well ** ** ---- ** ** Please, submit your force field library(ies) to R.E.DD.B. @ ** ** http://q4md-forcefieldtools.org/REDDB/ ** ** to freely share your results with the scientific community ** ** ---- ** ** Do you need help about the q4md force field tools? ** ** Please, use the q4md-forcefieldtools.org mailing list @ ** ** http://lists.q4md-forcefieldtools.org/ ** **************************************************************************** ** We thank you for using Ante_R.E.D. ** ****************************************************************************
1 molecule converted 18 audit log messages
%%bash
export PATH=${PATH}:/home/preps/golovin/progs/bin
rm /home/students/y12/popov/gamess-scratch/*
cp et-out.p2n Mol_red1.p2n
RED-vIII.51.pl
--------------------------- * Welcome to R.E.D. III.51 * RESP ESP charge Derive http://q4md-forcefieldtools.org/RED/ CHARGE TYPE = RESP-A1 --------------------------- Distributed under the GNU General Public License --------------------------- Date: Thu Mar 24 16:12:56 MSK 2016 Machine: kodomo.fbb.msu.ru --------------------------- Number of cpu(s) used in the QM jobs(s): 1 --------------------------- * Operating system * Linux kodomo.fbb.msu.ru 3.8-2-amd64 #1 SMP Debian 3.8.13-1 x86_64 GNU/Linux DID YOU PREPARE YOUR P2N INPUT FILES USING ANTE_R.E.D. 2.0/R.E.D SERVER? WE STRONGLY RECOMMAND YOU TO USE ANTE_R.E.D. 2.0/R.E.D SERVER TO PREPARE YOUR P2N FILES... Charge correction will be carried out at 1.10-4 e. =========================================================================== ======================= Single molecule =========================== The molecule TITLE is "MOLECULE" The TOTAL CHARGE value of the molecule is "0" The SPIN MULTIPLICITY value of the molecule is "1" =========================================================================== * 1 conformation(s) selected * WARNING: A 2nd column of atom names is detected This 2nd column will be used in the PDB (& Tripos) file(s) WARNING: No three atom based re-orientation found in the P2N file Re-orientation will be done according to the GAMESS Algorithm! * Selected QM Software * GAMESS * Software checking * gamess.00.x [ OK ] rungms [ OK ] ddikick.x [ OK ] resp [ OK ] The Scratch directory defined for GAMESS is /home/students/y12/popov/gamess-scratch Scratch directory for GAMESS [ OK ] The punch file directory defined for GAMESS is $SCR/$JOB.dat Geometry optimization(s) is/are being computed for molecule 1 ... [ OK ] See the file(s) "JOB1-gam_m1-1.log" MEP(s) is/are being computed for molecule 1 ... [ OK ] See the file(s) "JOB2-gam_m1-1-(X).log" The RESP-A1 charges are being derived for molecule 1 ... [ OK ] See the "punch2_m1" file(s) The following Tripos mol2 file(s) has/have been created. Mol_m1-o1.mol2 Charge values & force field libraries are available in the "Data-RED" directory. Execution time: 0 h 0 m 15 s ************************************************************************* R.E.D. I was developed @ the "Faculte de Pharmacie" in Amiens by: A.Pigache,(1) P.Cieplak(2) & F.-Y.Dupradeau(1) R.E.D. II was developed in D.A.Case's laboratory at "TSRI" by: T.Zaffran,(1,3) P.Cieplak(2) & F.-Y.Dupradeau(1,3) R.E.D. III.x developments were initiated in D.A.Case's laboratory @ TSRI & are now carried out @ the "UFR de Pharmacie" in Amiens by: F.Wang,(5) E.Garcia,(5) N.Grivel,(1,3) P.Cieplak(4) & F.-Y.Dupradeau(1,3,5) R.E.D. IV is developed @ the "UFR de Pharmacie" in Amiens by: F.Wang,(5) W.Rozanski,(5) E.Garcia,(5) D.Lelong,(5) P.Cieplak(4) & F.-Y.Dupradeau(5) (1) DMAG EA 3901 & Faculte de Pharmacie, Amiens, France (2) Accelrys Inc., San Diego, USA (3) D.A.Case's lab., The Scripps Research Institute, La Jolla, CA, USA (4) Sanford|Burnham Institute for Medical Research, La Jolla, CA, USA (5) CNRS UMR 6219 & UFR de Pharmacie, Amiens, France ************************************************************************* R.E.D. III.5 is distributed under the GNU General Public License ************************************************************************* Do you need a new feature which is not yet implemented in R.E.D.-III.5? contact the q4md force field tools team @ contact@q4md-forcefieldtools.org Regularly look for bug fixes at the R.E.D. home page To use R.E.D. IV, see R.E.D. Server @ http://q4md-forcefieldtools.org/REDS/ ---- Please, submit your force field library(ies) to R.E.DD.B. @ http://q4md-forcefieldtools.org/REDDB/ to freely review & share your results within the scientific community ---- Do you need help about the q4md force field tools? Please, use the q4md-forcefieldtools.org mailing list @ http://lists.q4md-forcefieldtools.org/ *************************************************************************
rm: cannot remove `/home/students/y12/popov/gamess-scratch/*': No such file or directory
В файле Data-RED/Mol_m1-o1.mol2 находятся координаты атомов и их заряды (последний столбец).
%%bash
grep "<TRIPOS>ATOM" Data-RED/Mol_m1-o1.mol2 -A 8
@<TRIPOS>ATOM 1 C 0.763688 0.000000 -0.000000 C 1 LIG -0.0190 **** 2 H 1.156406 0.000000 -1.012074 H 1 LIG 0.0059 **** 3 H 1.156406 0.876482 0.506037 H 1 LIG 0.0059 **** 4 H 1.156406 -0.876482 0.506037 H 1 LIG 0.0059 **** 5 C -0.763688 0.000000 0.000000 C 1 LIG -0.0155 **** 6 H -1.156406 0.000000 1.012074 H 1 LIG 0.0056 **** 7 H -1.156406 0.876482 -0.506037 H 1 LIG 0.0056 **** 8 H -1.156406 -0.876482 -0.506037 H 1 LIG 0.0056 ****
В файле Data-RED/JOB2-gam_m1-1-1.log находятся результаты работы GAMESS. Сравним значения зарядов:
%%bash
grep "TOTAL MULLIKEN" Data-RED/JOB2-gam_m1-1-1.log -A 9
TOTAL MULLIKEN AND LOWDIN ATOMIC POPULATIONS ATOM MULL.POP. CHARGE LOW.POP. CHARGE 1 C 6.475593 -0.475593 6.442144 -0.442144 2 H 0.841469 0.158531 0.853681 0.146319 3 H 0.841469 0.158531 0.852088 0.147912 4 H 0.841469 0.158531 0.852088 0.147912 5 C 6.475593 -0.475593 6.442144 -0.442144 6 H 0.841469 0.158531 0.853681 0.146319 7 H 0.841469 0.158531 0.852088 0.147912 8 H 0.841469 0.158531 0.852088 0.147912
Как видно, RED уменьшил в ~20 раз все заряды, а также уравнял заряды у водородов.
Создадим файл описания молекулы в формате пакета программ GROMACS.
Зададим некоторые правила:
%%bash
echo "[ defaults ]
; nbfunc comb-rule gen-pairs fudgeLJ fudgeQQ
1 2 yes 0.5 0.8333" > et.top
Зададим типы атомов и собственно параметры для функции Леннарда-Джонса.
sigma - Ван-дер-Ваальсовый радиус
%%bash
echo "[ atomtypes ]
; name at.num mass charge ptype sigma epsilon
H 1 1.008 0.0000 A 1.06908e-01 1.00000e-00
C 6 12.01 0.0000 A 3.39967e-01 3.59824e-01" >> et.top
Дальше переходим непосредственно к описанию молекулы. Здесь мы описываем имя и указываем, что соседи через три связи не учитываются при расчете Ван-дер-Ваальсовых взаимодействий. Это верно так, как мы включаем это взаимодействие в торсионные углы:
%%bash
echo "[ moleculetype ]
; Name nrexcl
et 3" >> et.top
Добавим атомы этана:
%%bash
echo "[ atoms ]
; nr type resnr residue atom cgnr charge mass
1 C 1 ETH C1 1 -0.10 12.01
2 C 1 ETH C2 2 -0.10 12.01
3 H 1 ETH H1 3 0.0 1.008
4 H 1 ETH H2 4 0.0 1.008
5 H 1 ETH H3 5 0.0 1.008
6 H 1 ETH H4 6 0.0 1.008
7 H 1 ETH H5 7 0.0 1.008
8 H 1 ETH H6 8 0.0 1.008" >> et.top
Опишем связи:
%%bash
echo "[ bonds ]
; ai aj funct b0 kb
1 2 1 0.1525 250000.0
1 3 1 0.1085 300000.0
1 4 1 0.1085 300000.0
1 5 1 0.1085 300000.0
2 6 1 0.1085 300000.0
2 7 1 0.1085 300000.0
2 8 1 0.1085 300000.0" >> et.top
Опишем связи:
%%bash
echo "[ angles ]
; ai aj ak funct phi0 kphi
;around c1
3 1 4 1 109.500 200.400
4 1 5 1 109.500 200.400
3 1 5 1 109.500 200.400
2 1 3 1 109.500 200.400
2 1 4 1 109.500 200.400
2 1 5 1 109.500 200.400
;around c2
1 2 6 1 109.500 400.400
6 2 8 1 109.500 200.400
6 2 7 1 109.500 200.400
7 2 8 1 109.500 200.400
1 2 7 1 109.500 200.400
1 2 8 1 109.500 200.400" >> et.top
Опишем торсионные углы:
%%bash
echo "[ dihedrals ]
; ai aj ak al funct t0 kt mult
3 1 2 6 1 0.0 0.62760 3
3 1 2 7 1 0.0 0.62760 3
3 1 2 8 1 0.0 0.62760 3
4 1 2 6 1 0.0 0.62760 3
4 1 2 7 1 0.0 0.62760 3
4 1 2 8 1 0.0 0.62760 3
5 1 2 6 1 0.0 0.62760 3
5 1 2 7 1 0.0 0.62760 3
5 1 2 8 1 0.0 0.62760 3" >> et.top
Создадим список пар атомов которые не должны считаться при расчете VdW:
%%bash
echo "[ pairs ]
; ai aj funct
3 6
3 7
3 8
4 6
4 7
4 8
5 6
5 7
5 8" >> et.top
Опишем систему с 38 молекулами белка:
%%bash
echo "[ System ]
; any text here
first one
[ molecules ]
;Name count
et 38" >> et.top
Промоделируем испарение этана.
Файл для газа (расстояние между молекулами порядка 50 Å):
%%bash
wget http://kodomo.fbb.msu.ru/FBB/year_08/term6/box_big.gro
Файл для жидкой системы:
%%bash
wget http://kodomo.fbb.msu.ru/FBB/year_08/term6/box_38.gro
--2016-03-25 14:57:42-- http://kodomo.fbb.msu.ru/FBB/year_08/term6/box_38.gro Resolving kodomo.fbb.msu.ru... 192.168.180.1 Connecting to kodomo.fbb.msu.ru|192.168.180.1|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 13727 (13K) Saving to: `box_38.gro' 0K .......... ... 100% 432M=0s 2016-03-25 14:57:42 (432 MB/s) - `box_38.gro' saved [13727/13727]
Проведём короткое моделирование динамики каждой из этих систем и определим разницу в энергии VdW взаимодействий между системами и сравним эту разницу с энтальпией испарения этана (при Т=25 это значение равно 5.4 кДж/моль).
Создадим 7 топологий с разными значениями epsilon для водорода:
%%bash
for i in {1..7};do
ep=$( echo "scale=5; 1/$i/$i/$i" | bc -l )
sed "s/1.00000e-00/$ep/" et.top > v_${i}.top
done
Проведём для каждой системы молекулярную динамику с каждым файлом топологии. Скачаем файл с настройками для динамики:
%%bash
wget http://kodomo.fbb.msu.ru/FBB/year_08/term6/md.mdp
--2016-03-25 15:11:45-- http://kodomo.fbb.msu.ru/FBB/year_08/term6/md.mdp Resolving kodomo.fbb.msu.ru... 192.168.180.1 Connecting to kodomo.fbb.msu.ru|192.168.180.1|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 1459 (1,4K) Saving to: `md.mdp' 0K . 100% 139M=0s 2016-03-25 15:11:45 (139 MB/s) - `md.mdp' saved [1459/1459]
%%bash
for i in {1..7};do
ep=$( echo "scale=5; 1/$i/$i/$i" | bc -l )
grompp_d -f md -c box_big -p v_${i}.top -o vb_${i} -maxwarn 1 && mdrun_d -deffnm vb_${i} -v
grompp_d -f md -c box_38 -p v_${i}.top -o v_${i} -maxwarn 1 && mdrun_d -deffnm v_${i} -v
done
:-) G R O M A C S (-: GROup of MAchos and Cynical Suckers :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) grompp_d (double precision) (-: turning all bonds into constraints... Analysing residue names: There are: 38 Other residues Analysing residues not classified as Protein/DNA/RNA/Water and splitting into groups... This run will generate roughly 20 Mb of data :-) G R O M A C S (-: Good ROcking Metal Altar for Chronical Sinners :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) grompp_d (double precision) (-: turning all bonds into constraints... Analysing residue names: There are: 38 Other residues Analysing residues not classified as Protein/DNA/RNA/Water and splitting into groups... This run will generate roughly 20 Mb of data :-) G R O M A C S (-: GROtesk MACabre and Sinister :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) grompp_d (double precision) (-: turning all bonds into constraints... Analysing residue names: There are: 38 Other residues Analysing residues not classified as Protein/DNA/RNA/Water and splitting into groups... This run will generate roughly 20 Mb of data :-) G R O M A C S (-: Gyas ROwers Mature At Cryogenic Speed :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) grompp_d (double precision) (-: turning all bonds into constraints... Analysing residue names: There are: 38 Other residues Analysing residues not classified as Protein/DNA/RNA/Water and splitting into groups... This run will generate roughly 20 Mb of data :-) G R O M A C S (-: Gromacs Runs One Microsecond At Cannonball Speeds :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) grompp_d (double precision) (-: turning all bonds into constraints... Analysing residue names: There are: 38 Other residues Analysing residues not classified as Protein/DNA/RNA/Water and splitting into groups... This run will generate roughly 20 Mb of data :-) G R O M A C S (-: Gallium Rubidium Oxygen Manganese Argon Carbon Silicon :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) grompp_d (double precision) (-: turning all bonds into constraints... Analysing residue names: There are: 38 Other residues Analysing residues not classified as Protein/DNA/RNA/Water and splitting into groups... This run will generate roughly 20 Mb of data :-) G R O M A C S (-: Good gRace! Old Maple Actually Chews Slate :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) grompp_d (double precision) (-: turning all bonds into constraints... Analysing residue names: There are: 38 Other residues Analysing residues not classified as Protein/DNA/RNA/Water and splitting into groups... This run will generate roughly 20 Mb of data :-) G R O M A C S (-: Glycine aRginine prOline Methionine Alanine Cystine Serine :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) grompp_d (double precision) (-: turning all bonds into constraints... Analysing residue names: There are: 38 Other residues Analysing residues not classified as Protein/DNA/RNA/Water and splitting into groups... This run will generate roughly 20 Mb of data :-) G R O M A C S (-: Giving Russians Opium May Alter Current Situation :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) grompp_d (double precision) (-: turning all bonds into constraints... Analysing residue names: There are: 38 Other residues Analysing residues not classified as Protein/DNA/RNA/Water and splitting into groups... This run will generate roughly 20 Mb of data :-) G R O M A C S (-: Gromacs Runs On Most of All Computer Systems :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) grompp_d (double precision) (-: turning all bonds into constraints... Analysing residue names: There are: 38 Other residues Analysing residues not classified as Protein/DNA/RNA/Water and splitting into groups... This run will generate roughly 20 Mb of data :-) G R O M A C S (-: Good ROcking Metal Altar for Chronical Sinners :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) grompp_d (double precision) (-: turning all bonds into constraints... Analysing residue names: There are: 38 Other residues Analysing residues not classified as Protein/DNA/RNA/Water and splitting into groups... This run will generate roughly 20 Mb of data :-) G R O M A C S (-: GROtesk MACabre and Sinister :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) grompp_d (double precision) (-: turning all bonds into constraints... Analysing residue names: There are: 38 Other residues Analysing residues not classified as Protein/DNA/RNA/Water and splitting into groups... This run will generate roughly 20 Mb of data :-) G R O M A C S (-: Gnomes, ROck Monsters And Chili Sauce :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) grompp_d (double precision) (-: turning all bonds into constraints... Analysing residue names: There are: 38 Other residues Analysing residues not classified as Protein/DNA/RNA/Water and splitting into groups... This run will generate roughly 20 Mb of data :-) G R O M A C S (-: GROtesk MACabre and Sinister :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) grompp_d (double precision) (-: turning all bonds into constraints... Analysing residue names: There are: 38 Other residues Analysing residues not classified as Protein/DNA/RNA/Water and splitting into groups... This run will generate roughly 20 Mb of data
Option Filename Type Description ------------------------------------------------------------ -f md.mdp Input grompp input file with MD parameters -po mdout.mdp Output grompp input file with MD parameters -c box_big.gro Input Structure file: gro g96 pdb tpr etc. -r conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -rb conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -n index.ndx Input, Opt. Index file -p v_1.top Input Topology file -pp processed.top Output, Opt. Topology file -o vb_1.tpr Output Run input file: tpr tpb tpa -t traj.trr Input, Opt. Full precision trajectory: trr trj cpt -e ener.edr Input, Opt. Energy file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -[no]v bool no Be loud and noisy -time real -1 Take frame at or first after this time. -[no]rmvsbds bool yes Remove constant bonded interactions with virtual sites -maxwarn int 1 Number of allowed warnings during input processing. Not for normal use and may generate unstable systems -[no]zero bool no Set parameters for bonded interactions without defaults to zero instead of generating an error -[no]renum bool yes Renumber atomtypes and minimize number of atomtypes Ignoring obsolete mdp entry 'title' Ignoring obsolete mdp entry 'cpp' Replacing old mdp entry 'unconstrained-start' by 'continuation' Back Off! I just backed up mdout.mdp to ./#mdout.mdp.14# NOTE 1 [file md.mdp]: Simulating without cut-offs is usually (slightly) faster with nstlist=0, nstype=simple and particle decomposition NOTE 2 [file md.mdp]: nstcomm < nstcalcenergy defeats the purpose of nstcalcenergy, setting nstcomm to nstcalcenergy NOTE 3 [file md.mdp]: Tumbling and or flying ice-cubes: We are not removing rotation around center of mass in a non-periodic system. You should probably set comm_mode = ANGULAR. Generated 3 of the 3 non-bonded parameter combinations Generating 1-4 interactions: fudge = 0.5 Generated 3 of the 3 1-4 parameter combinations Excluding 3 bonded neighbours molecule type 'et' NOTE 4 [file v_1.top, line 73]: System has non-zero total charge: -7.600000 Total charge should normally be an integer. See http://www.gromacs.org/Documentation/Floating_Point_Arithmetic for discussion on how close it should be to an integer. Velocities were taken from a Maxwell distribution at 300 K Number of degrees of freedom in T-Coupling group System is 643.00 There were 4 notes gcq#93: "Pretend That You're Hercule Poirot" (TeX) :-) G R O M A C S (-: Gromacs Runs On Most of All Computer Systems :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) mdrun_d (double precision) (-: Option Filename Type Description ------------------------------------------------------------ -s vb_1.tpr Input Run input file: tpr tpb tpa -o vb_1.trr Output Full precision trajectory: trr trj cpt -x vb_1.xtc Output, Opt. Compressed trajectory (portable xdr format) -cpi vb_1.cpt Input, Opt. Checkpoint file -cpo vb_1.cpt Output, Opt. Checkpoint file -c vb_1.gro Output Structure file: gro g96 pdb etc. -e vb_1.edr Output Energy file -g vb_1.log Output Log file -dhdl vb_1.xvg Output, Opt. xvgr/xmgr file -field vb_1.xvg Output, Opt. xvgr/xmgr file -table vb_1.xvg Input, Opt. xvgr/xmgr file -tablep vb_1.xvg Input, Opt. xvgr/xmgr file -tableb vb_1.xvg Input, Opt. xvgr/xmgr file -rerun vb_1.xtc Input, Opt. Trajectory: xtc trr trj gro g96 pdb cpt -tpi vb_1.xvg Output, Opt. xvgr/xmgr file -tpid vb_1.xvg Output, Opt. xvgr/xmgr file -ei vb_1.edi Input, Opt. ED sampling input -eo vb_1.edo Output, Opt. ED sampling output -j vb_1.gct Input, Opt. General coupling stuff -jo vb_1.gct Output, Opt. General coupling stuff -ffout vb_1.xvg Output, Opt. xvgr/xmgr file -devout vb_1.xvg Output, Opt. xvgr/xmgr file -runav vb_1.xvg Output, Opt. xvgr/xmgr file -px vb_1.xvg Output, Opt. xvgr/xmgr file -pf vb_1.xvg Output, Opt. xvgr/xmgr file -mtx vb_1.mtx Output, Opt. Hessian matrix -dn vb_1.ndx Output, Opt. Index file -multidir vb_1 Input, Opt., Mult. Run directory Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -deffnm string vb_1 Set the default filename for all file options -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]pd bool no Use particle decompostion -dd vector 0 0 0 Domain decomposition grid, 0 is optimize -nt int 0 Number of threads to start (0 is guess) -npme int -1 Number of separate nodes to be used for PME, -1 is guess -ddorder enum interleave DD node order: interleave, pp_pme or cartesian -[no]ddcheck bool yes Check for all bonded interactions with DD -rdd real 0 The maximum distance for bonded interactions with DD (nm), 0 is determine from initial coordinates -rcon real 0 Maximum distance for P-LINCS (nm), 0 is estimate -dlb enum auto Dynamic load balancing (with DD): auto, no or yes -dds real 0.8 Minimum allowed dlb scaling of the DD cell size -gcom int -1 Global communication frequency -[no]v bool yes Be loud and noisy -[no]compact bool yes Write a compact log file -[no]seppot bool no Write separate V and dVdl terms for each interaction type and node to the log file(s) -pforce real -1 Print all forces larger than this (kJ/mol nm) -[no]reprod bool no Try to avoid optimizations that affect binary reproducibility -cpt real 15 Checkpoint interval (minutes) -[no]cpnum bool no Keep and number checkpoint files -[no]append bool yes Append to previous output files when continuing from checkpoint instead of adding the simulation part number to all file names -maxh real -1 Terminate after 0.99 times this time (hours) -multi int 0 Do multiple simulations in parallel -replex int 0 Attempt replica exchange periodically with this period (steps) -reseed int -1 Seed for replica exchange, -1 is generate a seed -[no]ionize bool no Do a simulation including the effect of an X-Ray bombardment on your system Getting Loaded... Reading file vb_1.tpr, VERSION 4.5.5 (double precision) NOTE: Parallelization is limited by the small number of atoms, only starting 3 threads. You can use the -nt option to optimize the number of threads. Starting 3 threads Loaded with Money starting mdrun 'first one' 50000 steps, 50.0 ps. step 49900, remaining runtime: 0 s Writing final coordinates. step 50000, remaining runtime: 0 s Parallel run - timing based on wallclock. NODE (s) Real (s) (%) Time: 25.237 25.237 100.0 (Mnbf/s) (GFlops) (ns/day) (hour/ns) Performance: 0.000 3.977 171.181 0.140 gcq#154: "Right Between the Eyes" (F. Zappa) Option Filename Type Description ------------------------------------------------------------ -f md.mdp Input grompp input file with MD parameters -po mdout.mdp Output grompp input file with MD parameters -c box_38.gro Input Structure file: gro g96 pdb tpr etc. -r conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -rb conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -n index.ndx Input, Opt. Index file -p v_1.top Input Topology file -pp processed.top Output, Opt. Topology file -o v_1.tpr Output Run input file: tpr tpb tpa -t traj.trr Input, Opt. Full precision trajectory: trr trj cpt -e ener.edr Input, Opt. Energy file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -[no]v bool no Be loud and noisy -time real -1 Take frame at or first after this time. -[no]rmvsbds bool yes Remove constant bonded interactions with virtual sites -maxwarn int 1 Number of allowed warnings during input processing. Not for normal use and may generate unstable systems -[no]zero bool no Set parameters for bonded interactions without defaults to zero instead of generating an error -[no]renum bool yes Renumber atomtypes and minimize number of atomtypes Ignoring obsolete mdp entry 'title' Ignoring obsolete mdp entry 'cpp' Replacing old mdp entry 'unconstrained-start' by 'continuation' Back Off! I just backed up mdout.mdp to ./#mdout.mdp.15# NOTE 1 [file md.mdp]: Simulating without cut-offs is usually (slightly) faster with nstlist=0, nstype=simple and particle decomposition NOTE 2 [file md.mdp]: nstcomm < nstcalcenergy defeats the purpose of nstcalcenergy, setting nstcomm to nstcalcenergy NOTE 3 [file md.mdp]: Tumbling and or flying ice-cubes: We are not removing rotation around center of mass in a non-periodic system. You should probably set comm_mode = ANGULAR. Generated 3 of the 3 non-bonded parameter combinations Generating 1-4 interactions: fudge = 0.5 Generated 3 of the 3 1-4 parameter combinations Excluding 3 bonded neighbours molecule type 'et' NOTE 4 [file v_1.top, line 73]: System has non-zero total charge: -7.600000 Total charge should normally be an integer. See http://www.gromacs.org/Documentation/Floating_Point_Arithmetic for discussion on how close it should be to an integer. Velocities were taken from a Maxwell distribution at 300 K Number of degrees of freedom in T-Coupling group System is 643.00 There were 4 notes gcq#154: "Right Between the Eyes" (F. Zappa) :-) G R O M A C S (-: Good ROcking Metal Altar for Chronical Sinners :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) mdrun_d (double precision) (-: Option Filename Type Description ------------------------------------------------------------ -s v_1.tpr Input Run input file: tpr tpb tpa -o v_1.trr Output Full precision trajectory: trr trj cpt -x v_1.xtc Output, Opt. Compressed trajectory (portable xdr format) -cpi v_1.cpt Input, Opt. Checkpoint file -cpo v_1.cpt Output, Opt. Checkpoint file -c v_1.gro Output Structure file: gro g96 pdb etc. -e v_1.edr Output Energy file -g v_1.log Output Log file -dhdl v_1.xvg Output, Opt. xvgr/xmgr file -field v_1.xvg Output, Opt. xvgr/xmgr file -table v_1.xvg Input, Opt. xvgr/xmgr file -tablep v_1.xvg Input, Opt. xvgr/xmgr file -tableb v_1.xvg Input, Opt. xvgr/xmgr file -rerun v_1.xtc Input, Opt. Trajectory: xtc trr trj gro g96 pdb cpt -tpi v_1.xvg Output, Opt. xvgr/xmgr file -tpid v_1.xvg Output, Opt. xvgr/xmgr file -ei v_1.edi Input, Opt. ED sampling input -eo v_1.edo Output, Opt. ED sampling output -j v_1.gct Input, Opt. General coupling stuff -jo v_1.gct Output, Opt. General coupling stuff -ffout v_1.xvg Output, Opt. xvgr/xmgr file -devout v_1.xvg Output, Opt. xvgr/xmgr file -runav v_1.xvg Output, Opt. xvgr/xmgr file -px v_1.xvg Output, Opt. xvgr/xmgr file -pf v_1.xvg Output, Opt. xvgr/xmgr file -mtx v_1.mtx Output, Opt. Hessian matrix -dn v_1.ndx Output, Opt. Index file -multidir v_1 Input, Opt., Mult. Run directory Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -deffnm string v_1 Set the default filename for all file options -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]pd bool no Use particle decompostion -dd vector 0 0 0 Domain decomposition grid, 0 is optimize -nt int 0 Number of threads to start (0 is guess) -npme int -1 Number of separate nodes to be used for PME, -1 is guess -ddorder enum interleave DD node order: interleave, pp_pme or cartesian -[no]ddcheck bool yes Check for all bonded interactions with DD -rdd real 0 The maximum distance for bonded interactions with DD (nm), 0 is determine from initial coordinates -rcon real 0 Maximum distance for P-LINCS (nm), 0 is estimate -dlb enum auto Dynamic load balancing (with DD): auto, no or yes -dds real 0.8 Minimum allowed dlb scaling of the DD cell size -gcom int -1 Global communication frequency -[no]v bool yes Be loud and noisy -[no]compact bool yes Write a compact log file -[no]seppot bool no Write separate V and dVdl terms for each interaction type and node to the log file(s) -pforce real -1 Print all forces larger than this (kJ/mol nm) -[no]reprod bool no Try to avoid optimizations that affect binary reproducibility -cpt real 15 Checkpoint interval (minutes) -[no]cpnum bool no Keep and number checkpoint files -[no]append bool yes Append to previous output files when continuing from checkpoint instead of adding the simulation part number to all file names -maxh real -1 Terminate after 0.99 times this time (hours) -multi int 0 Do multiple simulations in parallel -replex int 0 Attempt replica exchange periodically with this period (steps) -reseed int -1 Seed for replica exchange, -1 is generate a seed -[no]ionize bool no Do a simulation including the effect of an X-Ray bombardment on your system Getting Loaded... Reading file v_1.tpr, VERSION 4.5.5 (double precision) NOTE: Parallelization is limited by the small number of atoms, only starting 3 threads. You can use the -nt option to optimize the number of threads. Starting 3 threads Loaded with Money starting mdrun 'first one' 50000 steps, 50.0 ps. step 49900, remaining runtime: 0 s Writing final coordinates. step 50000, remaining runtime: 0 s Parallel run - timing based on wallclock. NODE (s) Real (s) (%) Time: 25.126 25.126 100.0 (Mnbf/s) (GFlops) (ns/day) (hour/ns) Performance: 0.000 3.994 171.939 0.140 gcq#101: "My Heart is Just a Muscle In a Cavity" (F. Black) Option Filename Type Description ------------------------------------------------------------ -f md.mdp Input grompp input file with MD parameters -po mdout.mdp Output grompp input file with MD parameters -c box_big.gro Input Structure file: gro g96 pdb tpr etc. -r conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -rb conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -n index.ndx Input, Opt. Index file -p v_2.top Input Topology file -pp processed.top Output, Opt. Topology file -o vb_2.tpr Output Run input file: tpr tpb tpa -t traj.trr Input, Opt. Full precision trajectory: trr trj cpt -e ener.edr Input, Opt. Energy file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -[no]v bool no Be loud and noisy -time real -1 Take frame at or first after this time. -[no]rmvsbds bool yes Remove constant bonded interactions with virtual sites -maxwarn int 1 Number of allowed warnings during input processing. Not for normal use and may generate unstable systems -[no]zero bool no Set parameters for bonded interactions without defaults to zero instead of generating an error -[no]renum bool yes Renumber atomtypes and minimize number of atomtypes Ignoring obsolete mdp entry 'title' Ignoring obsolete mdp entry 'cpp' Replacing old mdp entry 'unconstrained-start' by 'continuation' Back Off! I just backed up mdout.mdp to ./#mdout.mdp.16# NOTE 1 [file md.mdp]: Simulating without cut-offs is usually (slightly) faster with nstlist=0, nstype=simple and particle decomposition NOTE 2 [file md.mdp]: nstcomm < nstcalcenergy defeats the purpose of nstcalcenergy, setting nstcomm to nstcalcenergy NOTE 3 [file md.mdp]: Tumbling and or flying ice-cubes: We are not removing rotation around center of mass in a non-periodic system. You should probably set comm_mode = ANGULAR. Generated 3 of the 3 non-bonded parameter combinations Generating 1-4 interactions: fudge = 0.5 Generated 3 of the 3 1-4 parameter combinations Excluding 3 bonded neighbours molecule type 'et' NOTE 4 [file v_2.top, line 73]: System has non-zero total charge: -7.600000 Total charge should normally be an integer. See http://www.gromacs.org/Documentation/Floating_Point_Arithmetic for discussion on how close it should be to an integer. Velocities were taken from a Maxwell distribution at 300 K Number of degrees of freedom in T-Coupling group System is 643.00 There were 4 notes gcq#101: "My Heart is Just a Muscle In a Cavity" (F. Black) :-) G R O M A C S (-: GROtesk MACabre and Sinister :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) mdrun_d (double precision) (-: Option Filename Type Description ------------------------------------------------------------ -s vb_2.tpr Input Run input file: tpr tpb tpa -o vb_2.trr Output Full precision trajectory: trr trj cpt -x vb_2.xtc Output, Opt. Compressed trajectory (portable xdr format) -cpi vb_2.cpt Input, Opt. Checkpoint file -cpo vb_2.cpt Output, Opt. Checkpoint file -c vb_2.gro Output Structure file: gro g96 pdb etc. -e vb_2.edr Output Energy file -g vb_2.log Output Log file -dhdl vb_2.xvg Output, Opt. xvgr/xmgr file -field vb_2.xvg Output, Opt. xvgr/xmgr file -table vb_2.xvg Input, Opt. xvgr/xmgr file -tablep vb_2.xvg Input, Opt. xvgr/xmgr file -tableb vb_2.xvg Input, Opt. xvgr/xmgr file -rerun vb_2.xtc Input, Opt. Trajectory: xtc trr trj gro g96 pdb cpt -tpi vb_2.xvg Output, Opt. xvgr/xmgr file -tpid vb_2.xvg Output, Opt. xvgr/xmgr file -ei vb_2.edi Input, Opt. ED sampling input -eo vb_2.edo Output, Opt. ED sampling output -j vb_2.gct Input, Opt. General coupling stuff -jo vb_2.gct Output, Opt. General coupling stuff -ffout vb_2.xvg Output, Opt. xvgr/xmgr file -devout vb_2.xvg Output, Opt. xvgr/xmgr file -runav vb_2.xvg Output, Opt. xvgr/xmgr file -px vb_2.xvg Output, Opt. xvgr/xmgr file -pf vb_2.xvg Output, Opt. xvgr/xmgr file -mtx vb_2.mtx Output, Opt. Hessian matrix -dn vb_2.ndx Output, Opt. Index file -multidir vb_2 Input, Opt., Mult. Run directory Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -deffnm string vb_2 Set the default filename for all file options -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]pd bool no Use particle decompostion -dd vector 0 0 0 Domain decomposition grid, 0 is optimize -nt int 0 Number of threads to start (0 is guess) -npme int -1 Number of separate nodes to be used for PME, -1 is guess -ddorder enum interleave DD node order: interleave, pp_pme or cartesian -[no]ddcheck bool yes Check for all bonded interactions with DD -rdd real 0 The maximum distance for bonded interactions with DD (nm), 0 is determine from initial coordinates -rcon real 0 Maximum distance for P-LINCS (nm), 0 is estimate -dlb enum auto Dynamic load balancing (with DD): auto, no or yes -dds real 0.8 Minimum allowed dlb scaling of the DD cell size -gcom int -1 Global communication frequency -[no]v bool yes Be loud and noisy -[no]compact bool yes Write a compact log file -[no]seppot bool no Write separate V and dVdl terms for each interaction type and node to the log file(s) -pforce real -1 Print all forces larger than this (kJ/mol nm) -[no]reprod bool no Try to avoid optimizations that affect binary reproducibility -cpt real 15 Checkpoint interval (minutes) -[no]cpnum bool no Keep and number checkpoint files -[no]append bool yes Append to previous output files when continuing from checkpoint instead of adding the simulation part number to all file names -maxh real -1 Terminate after 0.99 times this time (hours) -multi int 0 Do multiple simulations in parallel -replex int 0 Attempt replica exchange periodically with this period (steps) -reseed int -1 Seed for replica exchange, -1 is generate a seed -[no]ionize bool no Do a simulation including the effect of an X-Ray bombardment on your system Getting Loaded... Reading file vb_2.tpr, VERSION 4.5.5 (double precision) NOTE: Parallelization is limited by the small number of atoms, only starting 3 threads. You can use the -nt option to optimize the number of threads. Starting 3 threads Loaded with Money starting mdrun 'first one' 50000 steps, 50.0 ps. step 49900, remaining runtime: 0 s Writing final coordinates. step 50000, remaining runtime: 0 s Parallel run - timing based on wallclock. NODE (s) Real (s) (%) Time: 25.208 25.208 100.0 (Mnbf/s) (GFlops) (ns/day) (hour/ns) Performance: 0.000 3.981 171.377 0.140 gcq#47: "I Am Testing Your Grey Matter" (Red Hot Chili Peppers) Option Filename Type Description ------------------------------------------------------------ -f md.mdp Input grompp input file with MD parameters -po mdout.mdp Output grompp input file with MD parameters -c box_38.gro Input Structure file: gro g96 pdb tpr etc. -r conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -rb conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -n index.ndx Input, Opt. Index file -p v_2.top Input Topology file -pp processed.top Output, Opt. Topology file -o v_2.tpr Output Run input file: tpr tpb tpa -t traj.trr Input, Opt. Full precision trajectory: trr trj cpt -e ener.edr Input, Opt. Energy file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -[no]v bool no Be loud and noisy -time real -1 Take frame at or first after this time. -[no]rmvsbds bool yes Remove constant bonded interactions with virtual sites -maxwarn int 1 Number of allowed warnings during input processing. Not for normal use and may generate unstable systems -[no]zero bool no Set parameters for bonded interactions without defaults to zero instead of generating an error -[no]renum bool yes Renumber atomtypes and minimize number of atomtypes Ignoring obsolete mdp entry 'title' Ignoring obsolete mdp entry 'cpp' Replacing old mdp entry 'unconstrained-start' by 'continuation' Back Off! I just backed up mdout.mdp to ./#mdout.mdp.17# NOTE 1 [file md.mdp]: Simulating without cut-offs is usually (slightly) faster with nstlist=0, nstype=simple and particle decomposition NOTE 2 [file md.mdp]: nstcomm < nstcalcenergy defeats the purpose of nstcalcenergy, setting nstcomm to nstcalcenergy NOTE 3 [file md.mdp]: Tumbling and or flying ice-cubes: We are not removing rotation around center of mass in a non-periodic system. You should probably set comm_mode = ANGULAR. Generated 3 of the 3 non-bonded parameter combinations Generating 1-4 interactions: fudge = 0.5 Generated 3 of the 3 1-4 parameter combinations Excluding 3 bonded neighbours molecule type 'et' NOTE 4 [file v_2.top, line 73]: System has non-zero total charge: -7.600000 Total charge should normally be an integer. See http://www.gromacs.org/Documentation/Floating_Point_Arithmetic for discussion on how close it should be to an integer. Velocities were taken from a Maxwell distribution at 300 K Number of degrees of freedom in T-Coupling group System is 643.00 There were 4 notes gcq#47: "I Am Testing Your Grey Matter" (Red Hot Chili Peppers) :-) G R O M A C S (-: Gyas ROwers Mature At Cryogenic Speed :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) mdrun_d (double precision) (-: Option Filename Type Description ------------------------------------------------------------ -s v_2.tpr Input Run input file: tpr tpb tpa -o v_2.trr Output Full precision trajectory: trr trj cpt -x v_2.xtc Output, Opt. Compressed trajectory (portable xdr format) -cpi v_2.cpt Input, Opt. Checkpoint file -cpo v_2.cpt Output, Opt. Checkpoint file -c v_2.gro Output Structure file: gro g96 pdb etc. -e v_2.edr Output Energy file -g v_2.log Output Log file -dhdl v_2.xvg Output, Opt. xvgr/xmgr file -field v_2.xvg Output, Opt. xvgr/xmgr file -table v_2.xvg Input, Opt. xvgr/xmgr file -tablep v_2.xvg Input, Opt. xvgr/xmgr file -tableb v_2.xvg Input, Opt. xvgr/xmgr file -rerun v_2.xtc Input, Opt. Trajectory: xtc trr trj gro g96 pdb cpt -tpi v_2.xvg Output, Opt. xvgr/xmgr file -tpid v_2.xvg Output, Opt. xvgr/xmgr file -ei v_2.edi Input, Opt. ED sampling input -eo v_2.edo Output, Opt. ED sampling output -j v_2.gct Input, Opt. General coupling stuff -jo v_2.gct Output, Opt. General coupling stuff -ffout v_2.xvg Output, Opt. xvgr/xmgr file -devout v_2.xvg Output, Opt. xvgr/xmgr file -runav v_2.xvg Output, Opt. xvgr/xmgr file -px v_2.xvg Output, Opt. xvgr/xmgr file -pf v_2.xvg Output, Opt. xvgr/xmgr file -mtx v_2.mtx Output, Opt. Hessian matrix -dn v_2.ndx Output, Opt. Index file -multidir v_2 Input, Opt., Mult. Run directory Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -deffnm string v_2 Set the default filename for all file options -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]pd bool no Use particle decompostion -dd vector 0 0 0 Domain decomposition grid, 0 is optimize -nt int 0 Number of threads to start (0 is guess) -npme int -1 Number of separate nodes to be used for PME, -1 is guess -ddorder enum interleave DD node order: interleave, pp_pme or cartesian -[no]ddcheck bool yes Check for all bonded interactions with DD -rdd real 0 The maximum distance for bonded interactions with DD (nm), 0 is determine from initial coordinates -rcon real 0 Maximum distance for P-LINCS (nm), 0 is estimate -dlb enum auto Dynamic load balancing (with DD): auto, no or yes -dds real 0.8 Minimum allowed dlb scaling of the DD cell size -gcom int -1 Global communication frequency -[no]v bool yes Be loud and noisy -[no]compact bool yes Write a compact log file -[no]seppot bool no Write separate V and dVdl terms for each interaction type and node to the log file(s) -pforce real -1 Print all forces larger than this (kJ/mol nm) -[no]reprod bool no Try to avoid optimizations that affect binary reproducibility -cpt real 15 Checkpoint interval (minutes) -[no]cpnum bool no Keep and number checkpoint files -[no]append bool yes Append to previous output files when continuing from checkpoint instead of adding the simulation part number to all file names -maxh real -1 Terminate after 0.99 times this time (hours) -multi int 0 Do multiple simulations in parallel -replex int 0 Attempt replica exchange periodically with this period (steps) -reseed int -1 Seed for replica exchange, -1 is generate a seed -[no]ionize bool no Do a simulation including the effect of an X-Ray bombardment on your system Getting Loaded... Reading file v_2.tpr, VERSION 4.5.5 (double precision) NOTE: Parallelization is limited by the small number of atoms, only starting 3 threads. You can use the -nt option to optimize the number of threads. Starting 3 threads Loaded with Money starting mdrun 'first one' 50000 steps, 50.0 ps. step 49900, remaining runtime: 0 s Writing final coordinates. step 50000, remaining runtime: 0 s Parallel run - timing based on wallclock. NODE (s) Real (s) (%) Time: 25.016 25.016 100.0 (Mnbf/s) (GFlops) (ns/day) (hour/ns) Performance: 0.000 4.012 172.692 0.139 gcq#360: "There's no way you can rely on an experiment" (Gerrit Groenhof) Option Filename Type Description ------------------------------------------------------------ -f md.mdp Input grompp input file with MD parameters -po mdout.mdp Output grompp input file with MD parameters -c box_big.gro Input Structure file: gro g96 pdb tpr etc. -r conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -rb conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -n index.ndx Input, Opt. Index file -p v_3.top Input Topology file -pp processed.top Output, Opt. Topology file -o vb_3.tpr Output Run input file: tpr tpb tpa -t traj.trr Input, Opt. Full precision trajectory: trr trj cpt -e ener.edr Input, Opt. Energy file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -[no]v bool no Be loud and noisy -time real -1 Take frame at or first after this time. -[no]rmvsbds bool yes Remove constant bonded interactions with virtual sites -maxwarn int 1 Number of allowed warnings during input processing. Not for normal use and may generate unstable systems -[no]zero bool no Set parameters for bonded interactions without defaults to zero instead of generating an error -[no]renum bool yes Renumber atomtypes and minimize number of atomtypes Ignoring obsolete mdp entry 'title' Ignoring obsolete mdp entry 'cpp' Replacing old mdp entry 'unconstrained-start' by 'continuation' Back Off! I just backed up mdout.mdp to ./#mdout.mdp.18# NOTE 1 [file md.mdp]: Simulating without cut-offs is usually (slightly) faster with nstlist=0, nstype=simple and particle decomposition NOTE 2 [file md.mdp]: nstcomm < nstcalcenergy defeats the purpose of nstcalcenergy, setting nstcomm to nstcalcenergy NOTE 3 [file md.mdp]: Tumbling and or flying ice-cubes: We are not removing rotation around center of mass in a non-periodic system. You should probably set comm_mode = ANGULAR. Generated 3 of the 3 non-bonded parameter combinations Generating 1-4 interactions: fudge = 0.5 Generated 3 of the 3 1-4 parameter combinations Excluding 3 bonded neighbours molecule type 'et' NOTE 4 [file v_3.top, line 73]: System has non-zero total charge: -7.600000 Total charge should normally be an integer. See http://www.gromacs.org/Documentation/Floating_Point_Arithmetic for discussion on how close it should be to an integer. Velocities were taken from a Maxwell distribution at 300 K Number of degrees of freedom in T-Coupling group System is 643.00 There were 4 notes gcq#360: "There's no way you can rely on an experiment" (Gerrit Groenhof) :-) G R O M A C S (-: Gromacs Runs One Microsecond At Cannonball Speeds :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) mdrun_d (double precision) (-: Option Filename Type Description ------------------------------------------------------------ -s vb_3.tpr Input Run input file: tpr tpb tpa -o vb_3.trr Output Full precision trajectory: trr trj cpt -x vb_3.xtc Output, Opt. Compressed trajectory (portable xdr format) -cpi vb_3.cpt Input, Opt. Checkpoint file -cpo vb_3.cpt Output, Opt. Checkpoint file -c vb_3.gro Output Structure file: gro g96 pdb etc. -e vb_3.edr Output Energy file -g vb_3.log Output Log file -dhdl vb_3.xvg Output, Opt. xvgr/xmgr file -field vb_3.xvg Output, Opt. xvgr/xmgr file -table vb_3.xvg Input, Opt. xvgr/xmgr file -tablep vb_3.xvg Input, Opt. xvgr/xmgr file -tableb vb_3.xvg Input, Opt. xvgr/xmgr file -rerun vb_3.xtc Input, Opt. Trajectory: xtc trr trj gro g96 pdb cpt -tpi vb_3.xvg Output, Opt. xvgr/xmgr file -tpid vb_3.xvg Output, Opt. xvgr/xmgr file -ei vb_3.edi Input, Opt. ED sampling input -eo vb_3.edo Output, Opt. ED sampling output -j vb_3.gct Input, Opt. General coupling stuff -jo vb_3.gct Output, Opt. General coupling stuff -ffout vb_3.xvg Output, Opt. xvgr/xmgr file -devout vb_3.xvg Output, Opt. xvgr/xmgr file -runav vb_3.xvg Output, Opt. xvgr/xmgr file -px vb_3.xvg Output, Opt. xvgr/xmgr file -pf vb_3.xvg Output, Opt. xvgr/xmgr file -mtx vb_3.mtx Output, Opt. Hessian matrix -dn vb_3.ndx Output, Opt. Index file -multidir vb_3 Input, Opt., Mult. Run directory Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -deffnm string vb_3 Set the default filename for all file options -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]pd bool no Use particle decompostion -dd vector 0 0 0 Domain decomposition grid, 0 is optimize -nt int 0 Number of threads to start (0 is guess) -npme int -1 Number of separate nodes to be used for PME, -1 is guess -ddorder enum interleave DD node order: interleave, pp_pme or cartesian -[no]ddcheck bool yes Check for all bonded interactions with DD -rdd real 0 The maximum distance for bonded interactions with DD (nm), 0 is determine from initial coordinates -rcon real 0 Maximum distance for P-LINCS (nm), 0 is estimate -dlb enum auto Dynamic load balancing (with DD): auto, no or yes -dds real 0.8 Minimum allowed dlb scaling of the DD cell size -gcom int -1 Global communication frequency -[no]v bool yes Be loud and noisy -[no]compact bool yes Write a compact log file -[no]seppot bool no Write separate V and dVdl terms for each interaction type and node to the log file(s) -pforce real -1 Print all forces larger than this (kJ/mol nm) -[no]reprod bool no Try to avoid optimizations that affect binary reproducibility -cpt real 15 Checkpoint interval (minutes) -[no]cpnum bool no Keep and number checkpoint files -[no]append bool yes Append to previous output files when continuing from checkpoint instead of adding the simulation part number to all file names -maxh real -1 Terminate after 0.99 times this time (hours) -multi int 0 Do multiple simulations in parallel -replex int 0 Attempt replica exchange periodically with this period (steps) -reseed int -1 Seed for replica exchange, -1 is generate a seed -[no]ionize bool no Do a simulation including the effect of an X-Ray bombardment on your system Getting Loaded... Reading file vb_3.tpr, VERSION 4.5.5 (double precision) NOTE: Parallelization is limited by the small number of atoms, only starting 3 threads. You can use the -nt option to optimize the number of threads. Starting 3 threads Loaded with Money starting mdrun 'first one' 50000 steps, 50.0 ps. step 49900, remaining runtime: 0 s Writing final coordinates. step 50000, remaining runtime: 0 s Parallel run - timing based on wallclock. NODE (s) Real (s) (%) Time: 25.068 25.068 100.0 (Mnbf/s) (GFlops) (ns/day) (hour/ns) Performance: 0.000 4.003 172.334 0.139 gcq#306: "Read me your scripture and I will twist it" (Red Hot Chili Peppers) Option Filename Type Description ------------------------------------------------------------ -f md.mdp Input grompp input file with MD parameters -po mdout.mdp Output grompp input file with MD parameters -c box_38.gro Input Structure file: gro g96 pdb tpr etc. -r conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -rb conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -n index.ndx Input, Opt. Index file -p v_3.top Input Topology file -pp processed.top Output, Opt. Topology file -o v_3.tpr Output Run input file: tpr tpb tpa -t traj.trr Input, Opt. Full precision trajectory: trr trj cpt -e ener.edr Input, Opt. Energy file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -[no]v bool no Be loud and noisy -time real -1 Take frame at or first after this time. -[no]rmvsbds bool yes Remove constant bonded interactions with virtual sites -maxwarn int 1 Number of allowed warnings during input processing. Not for normal use and may generate unstable systems -[no]zero bool no Set parameters for bonded interactions without defaults to zero instead of generating an error -[no]renum bool yes Renumber atomtypes and minimize number of atomtypes Ignoring obsolete mdp entry 'title' Ignoring obsolete mdp entry 'cpp' Replacing old mdp entry 'unconstrained-start' by 'continuation' Back Off! I just backed up mdout.mdp to ./#mdout.mdp.19# NOTE 1 [file md.mdp]: Simulating without cut-offs is usually (slightly) faster with nstlist=0, nstype=simple and particle decomposition NOTE 2 [file md.mdp]: nstcomm < nstcalcenergy defeats the purpose of nstcalcenergy, setting nstcomm to nstcalcenergy NOTE 3 [file md.mdp]: Tumbling and or flying ice-cubes: We are not removing rotation around center of mass in a non-periodic system. You should probably set comm_mode = ANGULAR. Generated 3 of the 3 non-bonded parameter combinations Generating 1-4 interactions: fudge = 0.5 Generated 3 of the 3 1-4 parameter combinations Excluding 3 bonded neighbours molecule type 'et' NOTE 4 [file v_3.top, line 73]: System has non-zero total charge: -7.600000 Total charge should normally be an integer. See http://www.gromacs.org/Documentation/Floating_Point_Arithmetic for discussion on how close it should be to an integer. Velocities were taken from a Maxwell distribution at 300 K Number of degrees of freedom in T-Coupling group System is 643.00 There were 4 notes gcq#306: "Read me your scripture and I will twist it" (Red Hot Chili Peppers) :-) G R O M A C S (-: Gallium Rubidium Oxygen Manganese Argon Carbon Silicon :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) mdrun_d (double precision) (-: Option Filename Type Description ------------------------------------------------------------ -s v_3.tpr Input Run input file: tpr tpb tpa -o v_3.trr Output Full precision trajectory: trr trj cpt -x v_3.xtc Output, Opt. Compressed trajectory (portable xdr format) -cpi v_3.cpt Input, Opt. Checkpoint file -cpo v_3.cpt Output, Opt. Checkpoint file -c v_3.gro Output Structure file: gro g96 pdb etc. -e v_3.edr Output Energy file -g v_3.log Output Log file -dhdl v_3.xvg Output, Opt. xvgr/xmgr file -field v_3.xvg Output, Opt. xvgr/xmgr file -table v_3.xvg Input, Opt. xvgr/xmgr file -tablep v_3.xvg Input, Opt. xvgr/xmgr file -tableb v_3.xvg Input, Opt. xvgr/xmgr file -rerun v_3.xtc Input, Opt. Trajectory: xtc trr trj gro g96 pdb cpt -tpi v_3.xvg Output, Opt. xvgr/xmgr file -tpid v_3.xvg Output, Opt. xvgr/xmgr file -ei v_3.edi Input, Opt. ED sampling input -eo v_3.edo Output, Opt. ED sampling output -j v_3.gct Input, Opt. General coupling stuff -jo v_3.gct Output, Opt. General coupling stuff -ffout v_3.xvg Output, Opt. xvgr/xmgr file -devout v_3.xvg Output, Opt. xvgr/xmgr file -runav v_3.xvg Output, Opt. xvgr/xmgr file -px v_3.xvg Output, Opt. xvgr/xmgr file -pf v_3.xvg Output, Opt. xvgr/xmgr file -mtx v_3.mtx Output, Opt. Hessian matrix -dn v_3.ndx Output, Opt. Index file -multidir v_3 Input, Opt., Mult. Run directory Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -deffnm string v_3 Set the default filename for all file options -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]pd bool no Use particle decompostion -dd vector 0 0 0 Domain decomposition grid, 0 is optimize -nt int 0 Number of threads to start (0 is guess) -npme int -1 Number of separate nodes to be used for PME, -1 is guess -ddorder enum interleave DD node order: interleave, pp_pme or cartesian -[no]ddcheck bool yes Check for all bonded interactions with DD -rdd real 0 The maximum distance for bonded interactions with DD (nm), 0 is determine from initial coordinates -rcon real 0 Maximum distance for P-LINCS (nm), 0 is estimate -dlb enum auto Dynamic load balancing (with DD): auto, no or yes -dds real 0.8 Minimum allowed dlb scaling of the DD cell size -gcom int -1 Global communication frequency -[no]v bool yes Be loud and noisy -[no]compact bool yes Write a compact log file -[no]seppot bool no Write separate V and dVdl terms for each interaction type and node to the log file(s) -pforce real -1 Print all forces larger than this (kJ/mol nm) -[no]reprod bool no Try to avoid optimizations that affect binary reproducibility -cpt real 15 Checkpoint interval (minutes) -[no]cpnum bool no Keep and number checkpoint files -[no]append bool yes Append to previous output files when continuing from checkpoint instead of adding the simulation part number to all file names -maxh real -1 Terminate after 0.99 times this time (hours) -multi int 0 Do multiple simulations in parallel -replex int 0 Attempt replica exchange periodically with this period (steps) -reseed int -1 Seed for replica exchange, -1 is generate a seed -[no]ionize bool no Do a simulation including the effect of an X-Ray bombardment on your system Getting Loaded... Reading file v_3.tpr, VERSION 4.5.5 (double precision) NOTE: Parallelization is limited by the small number of atoms, only starting 3 threads. You can use the -nt option to optimize the number of threads. Starting 3 threads Loaded with Money starting mdrun 'first one' 50000 steps, 50.0 ps. step 49900, remaining runtime: 0 s Writing final coordinates. step 50000, remaining runtime: 0 s Parallel run - timing based on wallclock. NODE (s) Real (s) (%) Time: 25.137 25.137 100.0 (Mnbf/s) (GFlops) (ns/day) (hour/ns) Performance: 0.000 3.992 171.863 0.140 gcq#2: "Jesus Built My Hotrod" (Ministry) Option Filename Type Description ------------------------------------------------------------ -f md.mdp Input grompp input file with MD parameters -po mdout.mdp Output grompp input file with MD parameters -c box_big.gro Input Structure file: gro g96 pdb tpr etc. -r conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -rb conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -n index.ndx Input, Opt. Index file -p v_4.top Input Topology file -pp processed.top Output, Opt. Topology file -o vb_4.tpr Output Run input file: tpr tpb tpa -t traj.trr Input, Opt. Full precision trajectory: trr trj cpt -e ener.edr Input, Opt. Energy file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -[no]v bool no Be loud and noisy -time real -1 Take frame at or first after this time. -[no]rmvsbds bool yes Remove constant bonded interactions with virtual sites -maxwarn int 1 Number of allowed warnings during input processing. Not for normal use and may generate unstable systems -[no]zero bool no Set parameters for bonded interactions without defaults to zero instead of generating an error -[no]renum bool yes Renumber atomtypes and minimize number of atomtypes Ignoring obsolete mdp entry 'title' Ignoring obsolete mdp entry 'cpp' Replacing old mdp entry 'unconstrained-start' by 'continuation' Back Off! I just backed up mdout.mdp to ./#mdout.mdp.20# NOTE 1 [file md.mdp]: Simulating without cut-offs is usually (slightly) faster with nstlist=0, nstype=simple and particle decomposition NOTE 2 [file md.mdp]: nstcomm < nstcalcenergy defeats the purpose of nstcalcenergy, setting nstcomm to nstcalcenergy NOTE 3 [file md.mdp]: Tumbling and or flying ice-cubes: We are not removing rotation around center of mass in a non-periodic system. You should probably set comm_mode = ANGULAR. Generated 3 of the 3 non-bonded parameter combinations Generating 1-4 interactions: fudge = 0.5 Generated 3 of the 3 1-4 parameter combinations Excluding 3 bonded neighbours molecule type 'et' NOTE 4 [file v_4.top, line 73]: System has non-zero total charge: -7.600000 Total charge should normally be an integer. See http://www.gromacs.org/Documentation/Floating_Point_Arithmetic for discussion on how close it should be to an integer. Velocities were taken from a Maxwell distribution at 300 K Number of degrees of freedom in T-Coupling group System is 643.00 There were 4 notes gcq#2: "Jesus Built My Hotrod" (Ministry) :-) G R O M A C S (-: Good gRace! Old Maple Actually Chews Slate :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) mdrun_d (double precision) (-: Option Filename Type Description ------------------------------------------------------------ -s vb_4.tpr Input Run input file: tpr tpb tpa -o vb_4.trr Output Full precision trajectory: trr trj cpt -x vb_4.xtc Output, Opt. Compressed trajectory (portable xdr format) -cpi vb_4.cpt Input, Opt. Checkpoint file -cpo vb_4.cpt Output, Opt. Checkpoint file -c vb_4.gro Output Structure file: gro g96 pdb etc. -e vb_4.edr Output Energy file -g vb_4.log Output Log file -dhdl vb_4.xvg Output, Opt. xvgr/xmgr file -field vb_4.xvg Output, Opt. xvgr/xmgr file -table vb_4.xvg Input, Opt. xvgr/xmgr file -tablep vb_4.xvg Input, Opt. xvgr/xmgr file -tableb vb_4.xvg Input, Opt. xvgr/xmgr file -rerun vb_4.xtc Input, Opt. Trajectory: xtc trr trj gro g96 pdb cpt -tpi vb_4.xvg Output, Opt. xvgr/xmgr file -tpid vb_4.xvg Output, Opt. xvgr/xmgr file -ei vb_4.edi Input, Opt. ED sampling input -eo vb_4.edo Output, Opt. ED sampling output -j vb_4.gct Input, Opt. General coupling stuff -jo vb_4.gct Output, Opt. General coupling stuff -ffout vb_4.xvg Output, Opt. xvgr/xmgr file -devout vb_4.xvg Output, Opt. xvgr/xmgr file -runav vb_4.xvg Output, Opt. xvgr/xmgr file -px vb_4.xvg Output, Opt. xvgr/xmgr file -pf vb_4.xvg Output, Opt. xvgr/xmgr file -mtx vb_4.mtx Output, Opt. Hessian matrix -dn vb_4.ndx Output, Opt. Index file -multidir vb_4 Input, Opt., Mult. Run directory Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -deffnm string vb_4 Set the default filename for all file options -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]pd bool no Use particle decompostion -dd vector 0 0 0 Domain decomposition grid, 0 is optimize -nt int 0 Number of threads to start (0 is guess) -npme int -1 Number of separate nodes to be used for PME, -1 is guess -ddorder enum interleave DD node order: interleave, pp_pme or cartesian -[no]ddcheck bool yes Check for all bonded interactions with DD -rdd real 0 The maximum distance for bonded interactions with DD (nm), 0 is determine from initial coordinates -rcon real 0 Maximum distance for P-LINCS (nm), 0 is estimate -dlb enum auto Dynamic load balancing (with DD): auto, no or yes -dds real 0.8 Minimum allowed dlb scaling of the DD cell size -gcom int -1 Global communication frequency -[no]v bool yes Be loud and noisy -[no]compact bool yes Write a compact log file -[no]seppot bool no Write separate V and dVdl terms for each interaction type and node to the log file(s) -pforce real -1 Print all forces larger than this (kJ/mol nm) -[no]reprod bool no Try to avoid optimizations that affect binary reproducibility -cpt real 15 Checkpoint interval (minutes) -[no]cpnum bool no Keep and number checkpoint files -[no]append bool yes Append to previous output files when continuing from checkpoint instead of adding the simulation part number to all file names -maxh real -1 Terminate after 0.99 times this time (hours) -multi int 0 Do multiple simulations in parallel -replex int 0 Attempt replica exchange periodically with this period (steps) -reseed int -1 Seed for replica exchange, -1 is generate a seed -[no]ionize bool no Do a simulation including the effect of an X-Ray bombardment on your system Getting Loaded... Reading file vb_4.tpr, VERSION 4.5.5 (double precision) NOTE: Parallelization is limited by the small number of atoms, only starting 3 threads. You can use the -nt option to optimize the number of threads. Starting 3 threads Loaded with Money starting mdrun 'first one' 50000 steps, 50.0 ps. step 49900, remaining runtime: 0 s Writing final coordinates. step 50000, remaining runtime: 0 s Parallel run - timing based on wallclock. NODE (s) Real (s) (%) Time: 25.201 25.201 100.0 (Mnbf/s) (GFlops) (ns/day) (hour/ns) Performance: 0.000 3.982 171.428 0.140 gcq#315: "Nobody Never Learnt No-Nothing from No History" (Gogol Bordello) Option Filename Type Description ------------------------------------------------------------ -f md.mdp Input grompp input file with MD parameters -po mdout.mdp Output grompp input file with MD parameters -c box_38.gro Input Structure file: gro g96 pdb tpr etc. -r conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -rb conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -n index.ndx Input, Opt. Index file -p v_4.top Input Topology file -pp processed.top Output, Opt. Topology file -o v_4.tpr Output Run input file: tpr tpb tpa -t traj.trr Input, Opt. Full precision trajectory: trr trj cpt -e ener.edr Input, Opt. Energy file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -[no]v bool no Be loud and noisy -time real -1 Take frame at or first after this time. -[no]rmvsbds bool yes Remove constant bonded interactions with virtual sites -maxwarn int 1 Number of allowed warnings during input processing. Not for normal use and may generate unstable systems -[no]zero bool no Set parameters for bonded interactions without defaults to zero instead of generating an error -[no]renum bool yes Renumber atomtypes and minimize number of atomtypes Ignoring obsolete mdp entry 'title' Ignoring obsolete mdp entry 'cpp' Replacing old mdp entry 'unconstrained-start' by 'continuation' Back Off! I just backed up mdout.mdp to ./#mdout.mdp.21# NOTE 1 [file md.mdp]: Simulating without cut-offs is usually (slightly) faster with nstlist=0, nstype=simple and particle decomposition NOTE 2 [file md.mdp]: nstcomm < nstcalcenergy defeats the purpose of nstcalcenergy, setting nstcomm to nstcalcenergy NOTE 3 [file md.mdp]: Tumbling and or flying ice-cubes: We are not removing rotation around center of mass in a non-periodic system. You should probably set comm_mode = ANGULAR. Generated 3 of the 3 non-bonded parameter combinations Generating 1-4 interactions: fudge = 0.5 Generated 3 of the 3 1-4 parameter combinations Excluding 3 bonded neighbours molecule type 'et' NOTE 4 [file v_4.top, line 73]: System has non-zero total charge: -7.600000 Total charge should normally be an integer. See http://www.gromacs.org/Documentation/Floating_Point_Arithmetic for discussion on how close it should be to an integer. Velocities were taken from a Maxwell distribution at 300 K Number of degrees of freedom in T-Coupling group System is 643.00 There were 4 notes gcq#315: "Nobody Never Learnt No-Nothing from No History" (Gogol Bordello) :-) G R O M A C S (-: Glycine aRginine prOline Methionine Alanine Cystine Serine :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) mdrun_d (double precision) (-: Option Filename Type Description ------------------------------------------------------------ -s v_4.tpr Input Run input file: tpr tpb tpa -o v_4.trr Output Full precision trajectory: trr trj cpt -x v_4.xtc Output, Opt. Compressed trajectory (portable xdr format) -cpi v_4.cpt Input, Opt. Checkpoint file -cpo v_4.cpt Output, Opt. Checkpoint file -c v_4.gro Output Structure file: gro g96 pdb etc. -e v_4.edr Output Energy file -g v_4.log Output Log file -dhdl v_4.xvg Output, Opt. xvgr/xmgr file -field v_4.xvg Output, Opt. xvgr/xmgr file -table v_4.xvg Input, Opt. xvgr/xmgr file -tablep v_4.xvg Input, Opt. xvgr/xmgr file -tableb v_4.xvg Input, Opt. xvgr/xmgr file -rerun v_4.xtc Input, Opt. Trajectory: xtc trr trj gro g96 pdb cpt -tpi v_4.xvg Output, Opt. xvgr/xmgr file -tpid v_4.xvg Output, Opt. xvgr/xmgr file -ei v_4.edi Input, Opt. ED sampling input -eo v_4.edo Output, Opt. ED sampling output -j v_4.gct Input, Opt. General coupling stuff -jo v_4.gct Output, Opt. General coupling stuff -ffout v_4.xvg Output, Opt. xvgr/xmgr file -devout v_4.xvg Output, Opt. xvgr/xmgr file -runav v_4.xvg Output, Opt. xvgr/xmgr file -px v_4.xvg Output, Opt. xvgr/xmgr file -pf v_4.xvg Output, Opt. xvgr/xmgr file -mtx v_4.mtx Output, Opt. Hessian matrix -dn v_4.ndx Output, Opt. Index file -multidir v_4 Input, Opt., Mult. Run directory Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -deffnm string v_4 Set the default filename for all file options -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]pd bool no Use particle decompostion -dd vector 0 0 0 Domain decomposition grid, 0 is optimize -nt int 0 Number of threads to start (0 is guess) -npme int -1 Number of separate nodes to be used for PME, -1 is guess -ddorder enum interleave DD node order: interleave, pp_pme or cartesian -[no]ddcheck bool yes Check for all bonded interactions with DD -rdd real 0 The maximum distance for bonded interactions with DD (nm), 0 is determine from initial coordinates -rcon real 0 Maximum distance for P-LINCS (nm), 0 is estimate -dlb enum auto Dynamic load balancing (with DD): auto, no or yes -dds real 0.8 Minimum allowed dlb scaling of the DD cell size -gcom int -1 Global communication frequency -[no]v bool yes Be loud and noisy -[no]compact bool yes Write a compact log file -[no]seppot bool no Write separate V and dVdl terms for each interaction type and node to the log file(s) -pforce real -1 Print all forces larger than this (kJ/mol nm) -[no]reprod bool no Try to avoid optimizations that affect binary reproducibility -cpt real 15 Checkpoint interval (minutes) -[no]cpnum bool no Keep and number checkpoint files -[no]append bool yes Append to previous output files when continuing from checkpoint instead of adding the simulation part number to all file names -maxh real -1 Terminate after 0.99 times this time (hours) -multi int 0 Do multiple simulations in parallel -replex int 0 Attempt replica exchange periodically with this period (steps) -reseed int -1 Seed for replica exchange, -1 is generate a seed -[no]ionize bool no Do a simulation including the effect of an X-Ray bombardment on your system Getting Loaded... Reading file v_4.tpr, VERSION 4.5.5 (double precision) NOTE: Parallelization is limited by the small number of atoms, only starting 3 threads. You can use the -nt option to optimize the number of threads. Starting 3 threads Loaded with Money starting mdrun 'first one' 50000 steps, 50.0 ps. step 49900, remaining runtime: 0 s Writing final coordinates. step 50000, remaining runtime: 0 s Parallel run - timing based on wallclock. NODE (s) Real (s) (%) Time: 25.149 25.149 100.0 (Mnbf/s) (GFlops) (ns/day) (hour/ns) Performance: 0.000 3.990 171.777 0.140 gcq#261: "Live for Liposuction" (Robbie Williams) Option Filename Type Description ------------------------------------------------------------ -f md.mdp Input grompp input file with MD parameters -po mdout.mdp Output grompp input file with MD parameters -c box_big.gro Input Structure file: gro g96 pdb tpr etc. -r conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -rb conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -n index.ndx Input, Opt. Index file -p v_5.top Input Topology file -pp processed.top Output, Opt. Topology file -o vb_5.tpr Output Run input file: tpr tpb tpa -t traj.trr Input, Opt. Full precision trajectory: trr trj cpt -e ener.edr Input, Opt. Energy file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -[no]v bool no Be loud and noisy -time real -1 Take frame at or first after this time. -[no]rmvsbds bool yes Remove constant bonded interactions with virtual sites -maxwarn int 1 Number of allowed warnings during input processing. Not for normal use and may generate unstable systems -[no]zero bool no Set parameters for bonded interactions without defaults to zero instead of generating an error -[no]renum bool yes Renumber atomtypes and minimize number of atomtypes Ignoring obsolete mdp entry 'title' Ignoring obsolete mdp entry 'cpp' Replacing old mdp entry 'unconstrained-start' by 'continuation' Back Off! I just backed up mdout.mdp to ./#mdout.mdp.22# NOTE 1 [file md.mdp]: Simulating without cut-offs is usually (slightly) faster with nstlist=0, nstype=simple and particle decomposition NOTE 2 [file md.mdp]: nstcomm < nstcalcenergy defeats the purpose of nstcalcenergy, setting nstcomm to nstcalcenergy NOTE 3 [file md.mdp]: Tumbling and or flying ice-cubes: We are not removing rotation around center of mass in a non-periodic system. You should probably set comm_mode = ANGULAR. Generated 3 of the 3 non-bonded parameter combinations Generating 1-4 interactions: fudge = 0.5 Generated 3 of the 3 1-4 parameter combinations Excluding 3 bonded neighbours molecule type 'et' NOTE 4 [file v_5.top, line 73]: System has non-zero total charge: -7.600000 Total charge should normally be an integer. See http://www.gromacs.org/Documentation/Floating_Point_Arithmetic for discussion on how close it should be to an integer. Velocities were taken from a Maxwell distribution at 300 K Number of degrees of freedom in T-Coupling group System is 643.00 There were 4 notes gcq#261: "Live for Liposuction" (Robbie Williams) :-) G R O M A C S (-: Giving Russians Opium May Alter Current Situation :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) mdrun_d (double precision) (-: Option Filename Type Description ------------------------------------------------------------ -s vb_5.tpr Input Run input file: tpr tpb tpa -o vb_5.trr Output Full precision trajectory: trr trj cpt -x vb_5.xtc Output, Opt. Compressed trajectory (portable xdr format) -cpi vb_5.cpt Input, Opt. Checkpoint file -cpo vb_5.cpt Output, Opt. Checkpoint file -c vb_5.gro Output Structure file: gro g96 pdb etc. -e vb_5.edr Output Energy file -g vb_5.log Output Log file -dhdl vb_5.xvg Output, Opt. xvgr/xmgr file -field vb_5.xvg Output, Opt. xvgr/xmgr file -table vb_5.xvg Input, Opt. xvgr/xmgr file -tablep vb_5.xvg Input, Opt. xvgr/xmgr file -tableb vb_5.xvg Input, Opt. xvgr/xmgr file -rerun vb_5.xtc Input, Opt. Trajectory: xtc trr trj gro g96 pdb cpt -tpi vb_5.xvg Output, Opt. xvgr/xmgr file -tpid vb_5.xvg Output, Opt. xvgr/xmgr file -ei vb_5.edi Input, Opt. ED sampling input -eo vb_5.edo Output, Opt. ED sampling output -j vb_5.gct Input, Opt. General coupling stuff -jo vb_5.gct Output, Opt. General coupling stuff -ffout vb_5.xvg Output, Opt. xvgr/xmgr file -devout vb_5.xvg Output, Opt. xvgr/xmgr file -runav vb_5.xvg Output, Opt. xvgr/xmgr file -px vb_5.xvg Output, Opt. xvgr/xmgr file -pf vb_5.xvg Output, Opt. xvgr/xmgr file -mtx vb_5.mtx Output, Opt. Hessian matrix -dn vb_5.ndx Output, Opt. Index file -multidir vb_5 Input, Opt., Mult. Run directory Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -deffnm string vb_5 Set the default filename for all file options -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]pd bool no Use particle decompostion -dd vector 0 0 0 Domain decomposition grid, 0 is optimize -nt int 0 Number of threads to start (0 is guess) -npme int -1 Number of separate nodes to be used for PME, -1 is guess -ddorder enum interleave DD node order: interleave, pp_pme or cartesian -[no]ddcheck bool yes Check for all bonded interactions with DD -rdd real 0 The maximum distance for bonded interactions with DD (nm), 0 is determine from initial coordinates -rcon real 0 Maximum distance for P-LINCS (nm), 0 is estimate -dlb enum auto Dynamic load balancing (with DD): auto, no or yes -dds real 0.8 Minimum allowed dlb scaling of the DD cell size -gcom int -1 Global communication frequency -[no]v bool yes Be loud and noisy -[no]compact bool yes Write a compact log file -[no]seppot bool no Write separate V and dVdl terms for each interaction type and node to the log file(s) -pforce real -1 Print all forces larger than this (kJ/mol nm) -[no]reprod bool no Try to avoid optimizations that affect binary reproducibility -cpt real 15 Checkpoint interval (minutes) -[no]cpnum bool no Keep and number checkpoint files -[no]append bool yes Append to previous output files when continuing from checkpoint instead of adding the simulation part number to all file names -maxh real -1 Terminate after 0.99 times this time (hours) -multi int 0 Do multiple simulations in parallel -replex int 0 Attempt replica exchange periodically with this period (steps) -reseed int -1 Seed for replica exchange, -1 is generate a seed -[no]ionize bool no Do a simulation including the effect of an X-Ray bombardment on your system Getting Loaded... Reading file vb_5.tpr, VERSION 4.5.5 (double precision) NOTE: Parallelization is limited by the small number of atoms, only starting 3 threads. You can use the -nt option to optimize the number of threads. Starting 3 threads Loaded with Money starting mdrun 'first one' 50000 steps, 50.0 ps. step 49900, remaining runtime: 0 s Writing final coordinates. step 50000, remaining runtime: 0 s Parallel run - timing based on wallclock. NODE (s) Real (s) (%) Time: 25.017 25.017 100.0 (Mnbf/s) (GFlops) (ns/day) (hour/ns) Performance: 0.000 4.012 172.689 0.139 gcq#208: "Watch Out Where the Huskies Go" (F. Zappa) Option Filename Type Description ------------------------------------------------------------ -f md.mdp Input grompp input file with MD parameters -po mdout.mdp Output grompp input file with MD parameters -c box_38.gro Input Structure file: gro g96 pdb tpr etc. -r conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -rb conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -n index.ndx Input, Opt. Index file -p v_5.top Input Topology file -pp processed.top Output, Opt. Topology file -o v_5.tpr Output Run input file: tpr tpb tpa -t traj.trr Input, Opt. Full precision trajectory: trr trj cpt -e ener.edr Input, Opt. Energy file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -[no]v bool no Be loud and noisy -time real -1 Take frame at or first after this time. -[no]rmvsbds bool yes Remove constant bonded interactions with virtual sites -maxwarn int 1 Number of allowed warnings during input processing. Not for normal use and may generate unstable systems -[no]zero bool no Set parameters for bonded interactions without defaults to zero instead of generating an error -[no]renum bool yes Renumber atomtypes and minimize number of atomtypes Ignoring obsolete mdp entry 'title' Ignoring obsolete mdp entry 'cpp' Replacing old mdp entry 'unconstrained-start' by 'continuation' Back Off! I just backed up mdout.mdp to ./#mdout.mdp.23# NOTE 1 [file md.mdp]: Simulating without cut-offs is usually (slightly) faster with nstlist=0, nstype=simple and particle decomposition NOTE 2 [file md.mdp]: nstcomm < nstcalcenergy defeats the purpose of nstcalcenergy, setting nstcomm to nstcalcenergy NOTE 3 [file md.mdp]: Tumbling and or flying ice-cubes: We are not removing rotation around center of mass in a non-periodic system. You should probably set comm_mode = ANGULAR. Generated 3 of the 3 non-bonded parameter combinations Generating 1-4 interactions: fudge = 0.5 Generated 3 of the 3 1-4 parameter combinations Excluding 3 bonded neighbours molecule type 'et' NOTE 4 [file v_5.top, line 73]: System has non-zero total charge: -7.600000 Total charge should normally be an integer. See http://www.gromacs.org/Documentation/Floating_Point_Arithmetic for discussion on how close it should be to an integer. Velocities were taken from a Maxwell distribution at 300 K Number of degrees of freedom in T-Coupling group System is 643.00 There were 4 notes gcq#208: "Watch Out Where the Huskies Go" (F. Zappa) :-) G R O M A C S (-: Gromacs Runs On Most of All Computer Systems :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) mdrun_d (double precision) (-: Option Filename Type Description ------------------------------------------------------------ -s v_5.tpr Input Run input file: tpr tpb tpa -o v_5.trr Output Full precision trajectory: trr trj cpt -x v_5.xtc Output, Opt. Compressed trajectory (portable xdr format) -cpi v_5.cpt Input, Opt. Checkpoint file -cpo v_5.cpt Output, Opt. Checkpoint file -c v_5.gro Output Structure file: gro g96 pdb etc. -e v_5.edr Output Energy file -g v_5.log Output Log file -dhdl v_5.xvg Output, Opt. xvgr/xmgr file -field v_5.xvg Output, Opt. xvgr/xmgr file -table v_5.xvg Input, Opt. xvgr/xmgr file -tablep v_5.xvg Input, Opt. xvgr/xmgr file -tableb v_5.xvg Input, Opt. xvgr/xmgr file -rerun v_5.xtc Input, Opt. Trajectory: xtc trr trj gro g96 pdb cpt -tpi v_5.xvg Output, Opt. xvgr/xmgr file -tpid v_5.xvg Output, Opt. xvgr/xmgr file -ei v_5.edi Input, Opt. ED sampling input -eo v_5.edo Output, Opt. ED sampling output -j v_5.gct Input, Opt. General coupling stuff -jo v_5.gct Output, Opt. General coupling stuff -ffout v_5.xvg Output, Opt. xvgr/xmgr file -devout v_5.xvg Output, Opt. xvgr/xmgr file -runav v_5.xvg Output, Opt. xvgr/xmgr file -px v_5.xvg Output, Opt. xvgr/xmgr file -pf v_5.xvg Output, Opt. xvgr/xmgr file -mtx v_5.mtx Output, Opt. Hessian matrix -dn v_5.ndx Output, Opt. Index file -multidir v_5 Input, Opt., Mult. Run directory Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -deffnm string v_5 Set the default filename for all file options -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]pd bool no Use particle decompostion -dd vector 0 0 0 Domain decomposition grid, 0 is optimize -nt int 0 Number of threads to start (0 is guess) -npme int -1 Number of separate nodes to be used for PME, -1 is guess -ddorder enum interleave DD node order: interleave, pp_pme or cartesian -[no]ddcheck bool yes Check for all bonded interactions with DD -rdd real 0 The maximum distance for bonded interactions with DD (nm), 0 is determine from initial coordinates -rcon real 0 Maximum distance for P-LINCS (nm), 0 is estimate -dlb enum auto Dynamic load balancing (with DD): auto, no or yes -dds real 0.8 Minimum allowed dlb scaling of the DD cell size -gcom int -1 Global communication frequency -[no]v bool yes Be loud and noisy -[no]compact bool yes Write a compact log file -[no]seppot bool no Write separate V and dVdl terms for each interaction type and node to the log file(s) -pforce real -1 Print all forces larger than this (kJ/mol nm) -[no]reprod bool no Try to avoid optimizations that affect binary reproducibility -cpt real 15 Checkpoint interval (minutes) -[no]cpnum bool no Keep and number checkpoint files -[no]append bool yes Append to previous output files when continuing from checkpoint instead of adding the simulation part number to all file names -maxh real -1 Terminate after 0.99 times this time (hours) -multi int 0 Do multiple simulations in parallel -replex int 0 Attempt replica exchange periodically with this period (steps) -reseed int -1 Seed for replica exchange, -1 is generate a seed -[no]ionize bool no Do a simulation including the effect of an X-Ray bombardment on your system Getting Loaded... Reading file v_5.tpr, VERSION 4.5.5 (double precision) NOTE: Parallelization is limited by the small number of atoms, only starting 3 threads. You can use the -nt option to optimize the number of threads. Starting 3 threads Loaded with Money starting mdrun 'first one' 50000 steps, 50.0 ps. step 49900, remaining runtime: 0 s Writing final coordinates. step 50000, remaining runtime: 0 s Parallel run - timing based on wallclock. NODE (s) Real (s) (%) Time: 25.198 25.198 100.0 (Mnbf/s) (GFlops) (ns/day) (hour/ns) Performance: 0.000 3.983 171.446 0.140 gcq#154: "Right Between the Eyes" (F. Zappa) Option Filename Type Description ------------------------------------------------------------ -f md.mdp Input grompp input file with MD parameters -po mdout.mdp Output grompp input file with MD parameters -c box_big.gro Input Structure file: gro g96 pdb tpr etc. -r conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -rb conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -n index.ndx Input, Opt. Index file -p v_6.top Input Topology file -pp processed.top Output, Opt. Topology file -o vb_6.tpr Output Run input file: tpr tpb tpa -t traj.trr Input, Opt. Full precision trajectory: trr trj cpt -e ener.edr Input, Opt. Energy file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -[no]v bool no Be loud and noisy -time real -1 Take frame at or first after this time. -[no]rmvsbds bool yes Remove constant bonded interactions with virtual sites -maxwarn int 1 Number of allowed warnings during input processing. Not for normal use and may generate unstable systems -[no]zero bool no Set parameters for bonded interactions without defaults to zero instead of generating an error -[no]renum bool yes Renumber atomtypes and minimize number of atomtypes Ignoring obsolete mdp entry 'title' Ignoring obsolete mdp entry 'cpp' Replacing old mdp entry 'unconstrained-start' by 'continuation' Back Off! I just backed up mdout.mdp to ./#mdout.mdp.24# NOTE 1 [file md.mdp]: Simulating without cut-offs is usually (slightly) faster with nstlist=0, nstype=simple and particle decomposition NOTE 2 [file md.mdp]: nstcomm < nstcalcenergy defeats the purpose of nstcalcenergy, setting nstcomm to nstcalcenergy NOTE 3 [file md.mdp]: Tumbling and or flying ice-cubes: We are not removing rotation around center of mass in a non-periodic system. You should probably set comm_mode = ANGULAR. Generated 3 of the 3 non-bonded parameter combinations Generating 1-4 interactions: fudge = 0.5 Generated 3 of the 3 1-4 parameter combinations Excluding 3 bonded neighbours molecule type 'et' NOTE 4 [file v_6.top, line 73]: System has non-zero total charge: -7.600000 Total charge should normally be an integer. See http://www.gromacs.org/Documentation/Floating_Point_Arithmetic for discussion on how close it should be to an integer. Velocities were taken from a Maxwell distribution at 300 K Number of degrees of freedom in T-Coupling group System is 643.00 There were 4 notes gcq#154: "Right Between the Eyes" (F. Zappa) :-) G R O M A C S (-: Good ROcking Metal Altar for Chronical Sinners :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) mdrun_d (double precision) (-: Option Filename Type Description ------------------------------------------------------------ -s vb_6.tpr Input Run input file: tpr tpb tpa -o vb_6.trr Output Full precision trajectory: trr trj cpt -x vb_6.xtc Output, Opt. Compressed trajectory (portable xdr format) -cpi vb_6.cpt Input, Opt. Checkpoint file -cpo vb_6.cpt Output, Opt. Checkpoint file -c vb_6.gro Output Structure file: gro g96 pdb etc. -e vb_6.edr Output Energy file -g vb_6.log Output Log file -dhdl vb_6.xvg Output, Opt. xvgr/xmgr file -field vb_6.xvg Output, Opt. xvgr/xmgr file -table vb_6.xvg Input, Opt. xvgr/xmgr file -tablep vb_6.xvg Input, Opt. xvgr/xmgr file -tableb vb_6.xvg Input, Opt. xvgr/xmgr file -rerun vb_6.xtc Input, Opt. Trajectory: xtc trr trj gro g96 pdb cpt -tpi vb_6.xvg Output, Opt. xvgr/xmgr file -tpid vb_6.xvg Output, Opt. xvgr/xmgr file -ei vb_6.edi Input, Opt. ED sampling input -eo vb_6.edo Output, Opt. ED sampling output -j vb_6.gct Input, Opt. General coupling stuff -jo vb_6.gct Output, Opt. General coupling stuff -ffout vb_6.xvg Output, Opt. xvgr/xmgr file -devout vb_6.xvg Output, Opt. xvgr/xmgr file -runav vb_6.xvg Output, Opt. xvgr/xmgr file -px vb_6.xvg Output, Opt. xvgr/xmgr file -pf vb_6.xvg Output, Opt. xvgr/xmgr file -mtx vb_6.mtx Output, Opt. Hessian matrix -dn vb_6.ndx Output, Opt. Index file -multidir vb_6 Input, Opt., Mult. Run directory Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -deffnm string vb_6 Set the default filename for all file options -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]pd bool no Use particle decompostion -dd vector 0 0 0 Domain decomposition grid, 0 is optimize -nt int 0 Number of threads to start (0 is guess) -npme int -1 Number of separate nodes to be used for PME, -1 is guess -ddorder enum interleave DD node order: interleave, pp_pme or cartesian -[no]ddcheck bool yes Check for all bonded interactions with DD -rdd real 0 The maximum distance for bonded interactions with DD (nm), 0 is determine from initial coordinates -rcon real 0 Maximum distance for P-LINCS (nm), 0 is estimate -dlb enum auto Dynamic load balancing (with DD): auto, no or yes -dds real 0.8 Minimum allowed dlb scaling of the DD cell size -gcom int -1 Global communication frequency -[no]v bool yes Be loud and noisy -[no]compact bool yes Write a compact log file -[no]seppot bool no Write separate V and dVdl terms for each interaction type and node to the log file(s) -pforce real -1 Print all forces larger than this (kJ/mol nm) -[no]reprod bool no Try to avoid optimizations that affect binary reproducibility -cpt real 15 Checkpoint interval (minutes) -[no]cpnum bool no Keep and number checkpoint files -[no]append bool yes Append to previous output files when continuing from checkpoint instead of adding the simulation part number to all file names -maxh real -1 Terminate after 0.99 times this time (hours) -multi int 0 Do multiple simulations in parallel -replex int 0 Attempt replica exchange periodically with this period (steps) -reseed int -1 Seed for replica exchange, -1 is generate a seed -[no]ionize bool no Do a simulation including the effect of an X-Ray bombardment on your system Getting Loaded... Reading file vb_6.tpr, VERSION 4.5.5 (double precision) NOTE: Parallelization is limited by the small number of atoms, only starting 3 threads. You can use the -nt option to optimize the number of threads. Starting 3 threads Loaded with Money starting mdrun 'first one' 50000 steps, 50.0 ps. step 49900, remaining runtime: 0 s Writing final coordinates. step 50000, remaining runtime: 0 s Parallel run - timing based on wallclock. NODE (s) Real (s) (%) Time: 25.039 25.039 100.0 (Mnbf/s) (GFlops) (ns/day) (hour/ns) Performance: 0.000 4.008 172.534 0.139 gcq#101: "My Heart is Just a Muscle In a Cavity" (F. Black) Option Filename Type Description ------------------------------------------------------------ -f md.mdp Input grompp input file with MD parameters -po mdout.mdp Output grompp input file with MD parameters -c box_38.gro Input Structure file: gro g96 pdb tpr etc. -r conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -rb conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -n index.ndx Input, Opt. Index file -p v_6.top Input Topology file -pp processed.top Output, Opt. Topology file -o v_6.tpr Output Run input file: tpr tpb tpa -t traj.trr Input, Opt. Full precision trajectory: trr trj cpt -e ener.edr Input, Opt. Energy file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -[no]v bool no Be loud and noisy -time real -1 Take frame at or first after this time. -[no]rmvsbds bool yes Remove constant bonded interactions with virtual sites -maxwarn int 1 Number of allowed warnings during input processing. Not for normal use and may generate unstable systems -[no]zero bool no Set parameters for bonded interactions without defaults to zero instead of generating an error -[no]renum bool yes Renumber atomtypes and minimize number of atomtypes Ignoring obsolete mdp entry 'title' Ignoring obsolete mdp entry 'cpp' Replacing old mdp entry 'unconstrained-start' by 'continuation' Back Off! I just backed up mdout.mdp to ./#mdout.mdp.25# NOTE 1 [file md.mdp]: Simulating without cut-offs is usually (slightly) faster with nstlist=0, nstype=simple and particle decomposition NOTE 2 [file md.mdp]: nstcomm < nstcalcenergy defeats the purpose of nstcalcenergy, setting nstcomm to nstcalcenergy NOTE 3 [file md.mdp]: Tumbling and or flying ice-cubes: We are not removing rotation around center of mass in a non-periodic system. You should probably set comm_mode = ANGULAR. Generated 3 of the 3 non-bonded parameter combinations Generating 1-4 interactions: fudge = 0.5 Generated 3 of the 3 1-4 parameter combinations Excluding 3 bonded neighbours molecule type 'et' NOTE 4 [file v_6.top, line 73]: System has non-zero total charge: -7.600000 Total charge should normally be an integer. See http://www.gromacs.org/Documentation/Floating_Point_Arithmetic for discussion on how close it should be to an integer. Velocities were taken from a Maxwell distribution at 300 K Number of degrees of freedom in T-Coupling group System is 643.00 There were 4 notes gcq#101: "My Heart is Just a Muscle In a Cavity" (F. Black) :-) G R O M A C S (-: GROtesk MACabre and Sinister :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) mdrun_d (double precision) (-: Option Filename Type Description ------------------------------------------------------------ -s v_6.tpr Input Run input file: tpr tpb tpa -o v_6.trr Output Full precision trajectory: trr trj cpt -x v_6.xtc Output, Opt. Compressed trajectory (portable xdr format) -cpi v_6.cpt Input, Opt. Checkpoint file -cpo v_6.cpt Output, Opt. Checkpoint file -c v_6.gro Output Structure file: gro g96 pdb etc. -e v_6.edr Output Energy file -g v_6.log Output Log file -dhdl v_6.xvg Output, Opt. xvgr/xmgr file -field v_6.xvg Output, Opt. xvgr/xmgr file -table v_6.xvg Input, Opt. xvgr/xmgr file -tablep v_6.xvg Input, Opt. xvgr/xmgr file -tableb v_6.xvg Input, Opt. xvgr/xmgr file -rerun v_6.xtc Input, Opt. Trajectory: xtc trr trj gro g96 pdb cpt -tpi v_6.xvg Output, Opt. xvgr/xmgr file -tpid v_6.xvg Output, Opt. xvgr/xmgr file -ei v_6.edi Input, Opt. ED sampling input -eo v_6.edo Output, Opt. ED sampling output -j v_6.gct Input, Opt. General coupling stuff -jo v_6.gct Output, Opt. General coupling stuff -ffout v_6.xvg Output, Opt. xvgr/xmgr file -devout v_6.xvg Output, Opt. xvgr/xmgr file -runav v_6.xvg Output, Opt. xvgr/xmgr file -px v_6.xvg Output, Opt. xvgr/xmgr file -pf v_6.xvg Output, Opt. xvgr/xmgr file -mtx v_6.mtx Output, Opt. Hessian matrix -dn v_6.ndx Output, Opt. Index file -multidir v_6 Input, Opt., Mult. Run directory Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -deffnm string v_6 Set the default filename for all file options -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]pd bool no Use particle decompostion -dd vector 0 0 0 Domain decomposition grid, 0 is optimize -nt int 0 Number of threads to start (0 is guess) -npme int -1 Number of separate nodes to be used for PME, -1 is guess -ddorder enum interleave DD node order: interleave, pp_pme or cartesian -[no]ddcheck bool yes Check for all bonded interactions with DD -rdd real 0 The maximum distance for bonded interactions with DD (nm), 0 is determine from initial coordinates -rcon real 0 Maximum distance for P-LINCS (nm), 0 is estimate -dlb enum auto Dynamic load balancing (with DD): auto, no or yes -dds real 0.8 Minimum allowed dlb scaling of the DD cell size -gcom int -1 Global communication frequency -[no]v bool yes Be loud and noisy -[no]compact bool yes Write a compact log file -[no]seppot bool no Write separate V and dVdl terms for each interaction type and node to the log file(s) -pforce real -1 Print all forces larger than this (kJ/mol nm) -[no]reprod bool no Try to avoid optimizations that affect binary reproducibility -cpt real 15 Checkpoint interval (minutes) -[no]cpnum bool no Keep and number checkpoint files -[no]append bool yes Append to previous output files when continuing from checkpoint instead of adding the simulation part number to all file names -maxh real -1 Terminate after 0.99 times this time (hours) -multi int 0 Do multiple simulations in parallel -replex int 0 Attempt replica exchange periodically with this period (steps) -reseed int -1 Seed for replica exchange, -1 is generate a seed -[no]ionize bool no Do a simulation including the effect of an X-Ray bombardment on your system Getting Loaded... Reading file v_6.tpr, VERSION 4.5.5 (double precision) NOTE: Parallelization is limited by the small number of atoms, only starting 3 threads. You can use the -nt option to optimize the number of threads. Starting 3 threads Loaded with Money starting mdrun 'first one' 50000 steps, 50.0 ps. step 49900, remaining runtime: 0 s Writing final coordinates. step 50000, remaining runtime: 0 s Parallel run - timing based on wallclock. NODE (s) Real (s) (%) Time: 25.155 25.155 100.0 (Mnbf/s) (GFlops) (ns/day) (hour/ns) Performance: 0.000 3.990 171.739 0.140 gcq#162: "Confirmed" (Star Trek) Option Filename Type Description ------------------------------------------------------------ -f md.mdp Input grompp input file with MD parameters -po mdout.mdp Output grompp input file with MD parameters -c box_big.gro Input Structure file: gro g96 pdb tpr etc. -r conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -rb conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -n index.ndx Input, Opt. Index file -p v_7.top Input Topology file -pp processed.top Output, Opt. Topology file -o vb_7.tpr Output Run input file: tpr tpb tpa -t traj.trr Input, Opt. Full precision trajectory: trr trj cpt -e ener.edr Input, Opt. Energy file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -[no]v bool no Be loud and noisy -time real -1 Take frame at or first after this time. -[no]rmvsbds bool yes Remove constant bonded interactions with virtual sites -maxwarn int 1 Number of allowed warnings during input processing. Not for normal use and may generate unstable systems -[no]zero bool no Set parameters for bonded interactions without defaults to zero instead of generating an error -[no]renum bool yes Renumber atomtypes and minimize number of atomtypes Ignoring obsolete mdp entry 'title' Ignoring obsolete mdp entry 'cpp' Replacing old mdp entry 'unconstrained-start' by 'continuation' Back Off! I just backed up mdout.mdp to ./#mdout.mdp.26# NOTE 1 [file md.mdp]: Simulating without cut-offs is usually (slightly) faster with nstlist=0, nstype=simple and particle decomposition NOTE 2 [file md.mdp]: nstcomm < nstcalcenergy defeats the purpose of nstcalcenergy, setting nstcomm to nstcalcenergy NOTE 3 [file md.mdp]: Tumbling and or flying ice-cubes: We are not removing rotation around center of mass in a non-periodic system. You should probably set comm_mode = ANGULAR. Generated 3 of the 3 non-bonded parameter combinations Generating 1-4 interactions: fudge = 0.5 Generated 3 of the 3 1-4 parameter combinations Excluding 3 bonded neighbours molecule type 'et' NOTE 4 [file v_7.top, line 73]: System has non-zero total charge: -7.600000 Total charge should normally be an integer. See http://www.gromacs.org/Documentation/Floating_Point_Arithmetic for discussion on how close it should be to an integer. Velocities were taken from a Maxwell distribution at 300 K Number of degrees of freedom in T-Coupling group System is 643.00 There were 4 notes gcq#162: "Confirmed" (Star Trek) :-) G R O M A C S (-: Gnomes, ROck Monsters And Chili Sauce :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) mdrun_d (double precision) (-: Option Filename Type Description ------------------------------------------------------------ -s vb_7.tpr Input Run input file: tpr tpb tpa -o vb_7.trr Output Full precision trajectory: trr trj cpt -x vb_7.xtc Output, Opt. Compressed trajectory (portable xdr format) -cpi vb_7.cpt Input, Opt. Checkpoint file -cpo vb_7.cpt Output, Opt. Checkpoint file -c vb_7.gro Output Structure file: gro g96 pdb etc. -e vb_7.edr Output Energy file -g vb_7.log Output Log file -dhdl vb_7.xvg Output, Opt. xvgr/xmgr file -field vb_7.xvg Output, Opt. xvgr/xmgr file -table vb_7.xvg Input, Opt. xvgr/xmgr file -tablep vb_7.xvg Input, Opt. xvgr/xmgr file -tableb vb_7.xvg Input, Opt. xvgr/xmgr file -rerun vb_7.xtc Input, Opt. Trajectory: xtc trr trj gro g96 pdb cpt -tpi vb_7.xvg Output, Opt. xvgr/xmgr file -tpid vb_7.xvg Output, Opt. xvgr/xmgr file -ei vb_7.edi Input, Opt. ED sampling input -eo vb_7.edo Output, Opt. ED sampling output -j vb_7.gct Input, Opt. General coupling stuff -jo vb_7.gct Output, Opt. General coupling stuff -ffout vb_7.xvg Output, Opt. xvgr/xmgr file -devout vb_7.xvg Output, Opt. xvgr/xmgr file -runav vb_7.xvg Output, Opt. xvgr/xmgr file -px vb_7.xvg Output, Opt. xvgr/xmgr file -pf vb_7.xvg Output, Opt. xvgr/xmgr file -mtx vb_7.mtx Output, Opt. Hessian matrix -dn vb_7.ndx Output, Opt. Index file -multidir vb_7 Input, Opt., Mult. Run directory Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -deffnm string vb_7 Set the default filename for all file options -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]pd bool no Use particle decompostion -dd vector 0 0 0 Domain decomposition grid, 0 is optimize -nt int 0 Number of threads to start (0 is guess) -npme int -1 Number of separate nodes to be used for PME, -1 is guess -ddorder enum interleave DD node order: interleave, pp_pme or cartesian -[no]ddcheck bool yes Check for all bonded interactions with DD -rdd real 0 The maximum distance for bonded interactions with DD (nm), 0 is determine from initial coordinates -rcon real 0 Maximum distance for P-LINCS (nm), 0 is estimate -dlb enum auto Dynamic load balancing (with DD): auto, no or yes -dds real 0.8 Minimum allowed dlb scaling of the DD cell size -gcom int -1 Global communication frequency -[no]v bool yes Be loud and noisy -[no]compact bool yes Write a compact log file -[no]seppot bool no Write separate V and dVdl terms for each interaction type and node to the log file(s) -pforce real -1 Print all forces larger than this (kJ/mol nm) -[no]reprod bool no Try to avoid optimizations that affect binary reproducibility -cpt real 15 Checkpoint interval (minutes) -[no]cpnum bool no Keep and number checkpoint files -[no]append bool yes Append to previous output files when continuing from checkpoint instead of adding the simulation part number to all file names -maxh real -1 Terminate after 0.99 times this time (hours) -multi int 0 Do multiple simulations in parallel -replex int 0 Attempt replica exchange periodically with this period (steps) -reseed int -1 Seed for replica exchange, -1 is generate a seed -[no]ionize bool no Do a simulation including the effect of an X-Ray bombardment on your system Getting Loaded... Reading file vb_7.tpr, VERSION 4.5.5 (double precision) NOTE: Parallelization is limited by the small number of atoms, only starting 3 threads. You can use the -nt option to optimize the number of threads. Starting 3 threads Loaded with Money starting mdrun 'first one' 50000 steps, 50.0 ps. step 49900, remaining runtime: 0 s Writing final coordinates. step 50000, remaining runtime: 0 s Parallel run - timing based on wallclock. NODE (s) Real (s) (%) Time: 25.077 25.077 100.0 (Mnbf/s) (GFlops) (ns/day) (hour/ns) Performance: 0.000 4.002 172.274 0.139 gcq#109: "Ease Myself Into the Body Bag" (P.J. Harvey) Option Filename Type Description ------------------------------------------------------------ -f md.mdp Input grompp input file with MD parameters -po mdout.mdp Output grompp input file with MD parameters -c box_38.gro Input Structure file: gro g96 pdb tpr etc. -r conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -rb conf.gro Input, Opt. Structure file: gro g96 pdb tpr etc. -n index.ndx Input, Opt. Index file -p v_7.top Input Topology file -pp processed.top Output, Opt. Topology file -o v_7.tpr Output Run input file: tpr tpb tpa -t traj.trr Input, Opt. Full precision trajectory: trr trj cpt -e ener.edr Input, Opt. Energy file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -[no]v bool no Be loud and noisy -time real -1 Take frame at or first after this time. -[no]rmvsbds bool yes Remove constant bonded interactions with virtual sites -maxwarn int 1 Number of allowed warnings during input processing. Not for normal use and may generate unstable systems -[no]zero bool no Set parameters for bonded interactions without defaults to zero instead of generating an error -[no]renum bool yes Renumber atomtypes and minimize number of atomtypes Ignoring obsolete mdp entry 'title' Ignoring obsolete mdp entry 'cpp' Replacing old mdp entry 'unconstrained-start' by 'continuation' Back Off! I just backed up mdout.mdp to ./#mdout.mdp.27# NOTE 1 [file md.mdp]: Simulating without cut-offs is usually (slightly) faster with nstlist=0, nstype=simple and particle decomposition NOTE 2 [file md.mdp]: nstcomm < nstcalcenergy defeats the purpose of nstcalcenergy, setting nstcomm to nstcalcenergy NOTE 3 [file md.mdp]: Tumbling and or flying ice-cubes: We are not removing rotation around center of mass in a non-periodic system. You should probably set comm_mode = ANGULAR. Generated 3 of the 3 non-bonded parameter combinations Generating 1-4 interactions: fudge = 0.5 Generated 3 of the 3 1-4 parameter combinations Excluding 3 bonded neighbours molecule type 'et' NOTE 4 [file v_7.top, line 73]: System has non-zero total charge: -7.600000 Total charge should normally be an integer. See http://www.gromacs.org/Documentation/Floating_Point_Arithmetic for discussion on how close it should be to an integer. Velocities were taken from a Maxwell distribution at 300 K Number of degrees of freedom in T-Coupling group System is 643.00 There were 4 notes gcq#109: "Ease Myself Into the Body Bag" (P.J. Harvey) :-) G R O M A C S (-: GROtesk MACabre and Sinister :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) mdrun_d (double precision) (-: Option Filename Type Description ------------------------------------------------------------ -s v_7.tpr Input Run input file: tpr tpb tpa -o v_7.trr Output Full precision trajectory: trr trj cpt -x v_7.xtc Output, Opt. Compressed trajectory (portable xdr format) -cpi v_7.cpt Input, Opt. Checkpoint file -cpo v_7.cpt Output, Opt. Checkpoint file -c v_7.gro Output Structure file: gro g96 pdb etc. -e v_7.edr Output Energy file -g v_7.log Output Log file -dhdl v_7.xvg Output, Opt. xvgr/xmgr file -field v_7.xvg Output, Opt. xvgr/xmgr file -table v_7.xvg Input, Opt. xvgr/xmgr file -tablep v_7.xvg Input, Opt. xvgr/xmgr file -tableb v_7.xvg Input, Opt. xvgr/xmgr file -rerun v_7.xtc Input, Opt. Trajectory: xtc trr trj gro g96 pdb cpt -tpi v_7.xvg Output, Opt. xvgr/xmgr file -tpid v_7.xvg Output, Opt. xvgr/xmgr file -ei v_7.edi Input, Opt. ED sampling input -eo v_7.edo Output, Opt. ED sampling output -j v_7.gct Input, Opt. General coupling stuff -jo v_7.gct Output, Opt. General coupling stuff -ffout v_7.xvg Output, Opt. xvgr/xmgr file -devout v_7.xvg Output, Opt. xvgr/xmgr file -runav v_7.xvg Output, Opt. xvgr/xmgr file -px v_7.xvg Output, Opt. xvgr/xmgr file -pf v_7.xvg Output, Opt. xvgr/xmgr file -mtx v_7.mtx Output, Opt. Hessian matrix -dn v_7.ndx Output, Opt. Index file -multidir v_7 Input, Opt., Mult. Run directory Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 0 Set the nicelevel -deffnm string v_7 Set the default filename for all file options -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]pd bool no Use particle decompostion -dd vector 0 0 0 Domain decomposition grid, 0 is optimize -nt int 0 Number of threads to start (0 is guess) -npme int -1 Number of separate nodes to be used for PME, -1 is guess -ddorder enum interleave DD node order: interleave, pp_pme or cartesian -[no]ddcheck bool yes Check for all bonded interactions with DD -rdd real 0 The maximum distance for bonded interactions with DD (nm), 0 is determine from initial coordinates -rcon real 0 Maximum distance for P-LINCS (nm), 0 is estimate -dlb enum auto Dynamic load balancing (with DD): auto, no or yes -dds real 0.8 Minimum allowed dlb scaling of the DD cell size -gcom int -1 Global communication frequency -[no]v bool yes Be loud and noisy -[no]compact bool yes Write a compact log file -[no]seppot bool no Write separate V and dVdl terms for each interaction type and node to the log file(s) -pforce real -1 Print all forces larger than this (kJ/mol nm) -[no]reprod bool no Try to avoid optimizations that affect binary reproducibility -cpt real 15 Checkpoint interval (minutes) -[no]cpnum bool no Keep and number checkpoint files -[no]append bool yes Append to previous output files when continuing from checkpoint instead of adding the simulation part number to all file names -maxh real -1 Terminate after 0.99 times this time (hours) -multi int 0 Do multiple simulations in parallel -replex int 0 Attempt replica exchange periodically with this period (steps) -reseed int -1 Seed for replica exchange, -1 is generate a seed -[no]ionize bool no Do a simulation including the effect of an X-Ray bombardment on your system Getting Loaded... Reading file v_7.tpr, VERSION 4.5.5 (double precision) NOTE: Parallelization is limited by the small number of atoms, only starting 3 threads. You can use the -nt option to optimize the number of threads. Starting 3 threads Loaded with Money starting mdrun 'first one' 50000 steps, 50.0 ps. step 49900, remaining runtime: 0 s Writing final coordinates. step 50000, remaining runtime: 0 s Parallel run - timing based on wallclock. NODE (s) Real (s) (%) Time: 25.090 25.090 100.0 (Mnbf/s) (GFlops) (ns/day) (hour/ns) Performance: 0.000 4.000 172.181 0.139 gcq#55: "Kissing You is Like Kissing Gravel" (Throwing Muses)
Результат можно посмотреть в PyMol (через консоль):
%%bash
trjconv_d -f v_3 -s v_3 -o v_3.pdb
Select group for output
:-) G R O M A C S (-: GRoups of Organic Molecules in ACtion for Science :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) trjconv_d (double precision) (-: Option Filename Type Description ------------------------------------------------------------ -f v_3.trr Input Trajectory: xtc trr trj gro g96 pdb cpt -o v_3.pdb Output Trajectory: xtc trr trj gro g96 pdb -s v_3.tpr Input, Opt! Structure+mass(db): tpr tpb tpa gro g96 pdb -n index.ndx Input, Opt. Index file -fr frames.ndx Input, Opt. Index file -sub cluster.ndx Input, Opt. Index file -drop drop.xvg Input, Opt. xvgr/xmgr file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 19 Set the nicelevel -b time 0 First frame (ps) to read from trajectory -e time 0 Last frame (ps) to read from trajectory -tu enum ps Time unit: fs, ps, ns, us, ms or s -[no]w bool no View output .xvg, .xpm, .eps and .pdb files -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -skip int 1 Only write every nr-th frame -dt time 0 Only write frame when t MOD dt = first time (ps) -[no]round bool no Round measurements to nearest picosecond -dump time -1 Dump frame nearest specified time (ps) -t0 time 0 Starting time (ps) (default: don't change) -timestep time 0 Change time step between input frames (ps) -pbc enum none PBC treatment (see help text for full description): none, mol, res, atom, nojump, cluster or whole -ur enum rect Unit-cell representation: rect, tric or compact -[no]center bool no Center atoms in box -boxcenter enum tric Center for -pbc and -center: tric, rect or zero -box vector 0 0 0 Size for new cubic box (default: read from input) -clustercenter vector 0 0 0 Optional starting point for pbc cluster option -trans vector 0 0 0 All coordinates will be translated by trans. This can advantageously be combined with -pbc mol -ur compact. -shift vector 0 0 0 All coordinates will be shifted by framenr*shift -fit enum none Fit molecule to ref structure in the structure file: none, rot+trans, rotxy+transxy, translation, transxy or progressive -ndec int 3 Precision for .xtc and .gro writing in number of decimal places -[no]vel bool yes Read and write velocities if possible -[no]force bool no Read and write forces if possible -trunc time -1 Truncate input trajectory file after this time (ps) -exec string Execute command for every output frame with the frame number as argument -[no]app bool no Append output -split time 0 Start writing new file when t MOD split = first time (ps) -[no]sep bool no Write each frame to a separate .gro, .g96 or .pdb file -nzero int 0 If the -sep flag is set, use these many digits for the file numbers and prepend zeros as needed -dropunder real 0 Drop all frames below this value -dropover real 0 Drop all frames above this value -[no]conect bool no Add conect records when writing .pdb files. Useful for visualization of non-standard molecules, e.g. coarse grained ones Will write pdb: Protein data bank file Reading file v_3.tpr, VERSION 4.5.5 (double precision) Reading file v_3.tpr, VERSION 4.5.5 (double precision) Group 0 ( System) has 304 elements Group 1 ( Other) has 304 elements Group 2 ( ETH) has 304 elements Select a group: ------------------------------------------------------- Program trjconv_d, VERSION 4.5.5 Source code file: /tmp/build/gromacs-4.5.5/src/gmxlib/index.c, line: 1036 Fatal error: Cannot read from input For more information and tips for troubleshooting, please check the GROMACS website at http://www.gromacs.org/Documentation/Errors ------------------------------------------------------- "Check Your Output" (P. Ahlstrom)
Посчитаем значения энергий:
%%bash
for i in {1..7};do
ep=$( echo "scale=5; 1/$i/$i/$i" | bc -l )
echo -e "LJ-(SR)\nCoulomb-(SR)\n0" | g_energy -f -b 10 vb_${i} -o eb_${i} > vb_${i}.txt
echo -e "LJ-(SR)\nCoulomb-(SR)\n0" | g_energy -f -b 10 v_${i} -o e_${i} > v_${i}.txt
done
:-) G R O M A C S (-: Giving Russians Opium May Alter Current Situation :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) g_energy (-: Option Filename Type Description ------------------------------------------------------------ -f vb_1.edr Input Energy file -f2 ener.edr Input, Opt. Energy file -s topol.tpr Input, Opt. Run input file: tpr tpb tpa -o eb_1.xvg Output xvgr/xmgr file -viol violaver.xvg Output, Opt. xvgr/xmgr file -pairs pairs.xvg Output, Opt. xvgr/xmgr file -ora orienta.xvg Output, Opt. xvgr/xmgr file -ort orientt.xvg Output, Opt. xvgr/xmgr file -oda orideva.xvg Output, Opt. xvgr/xmgr file -odr oridevr.xvg Output, Opt. xvgr/xmgr file -odt oridevt.xvg Output, Opt. xvgr/xmgr file -oten oriten.xvg Output, Opt. xvgr/xmgr file -corr enecorr.xvg Output, Opt. xvgr/xmgr file -vis visco.xvg Output, Opt. xvgr/xmgr file -ravg runavgdf.xvg Output, Opt. xvgr/xmgr file -odh dhdl.xvg Output, Opt. xvgr/xmgr file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 19 Set the nicelevel -b time 10 First frame (ps) to read from trajectory -e time 0 Last frame (ps) to read from trajectory -[no]w bool no View output .xvg, .xpm, .eps and .pdb files -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]fee bool no Do a free energy estimate -fetemp real 300 Reference temperature for free energy calculation -zero real 0 Subtract a zero-point energy -[no]sum bool no Sum the energy terms selected rather than display them all -[no]dp bool no Print energies in high precision -nbmin int 5 Minimum number of blocks for error estimate -nbmax int 5 Maximum number of blocks for error estimate -[no]mutot bool no Compute the total dipole moment from the components -skip int 0 Skip number of frames between data points -[no]aver bool no Also print the exact average and rmsd stored in the energy frames (only when 1 term is requested) -nmol int 1 Number of molecules in your sample: the energies are divided by this number -[no]driftcorr bool no Useful only for calculations of fluctuation properties. The drift in the observables will be subtracted before computing the fluctuation properties. -[no]fluc bool no Calculate autocorrelation of energy fluctuations rather than energy itself -[no]orinst bool no Analyse instantaneous orientation data -[no]ovec bool no Also plot the eigenvectors with -oten -acflen int -1 Length of the ACF, default is half the number of frames -[no]normalize bool yes Normalize ACF -P enum 0 Order of Legendre polynomial for ACF (0 indicates none): 0, 1, 2 or 3 -fitfn enum none Fit function: none, exp, aexp, exp_exp, vac, exp5, exp7, exp9 or erffit -ncskip int 0 Skip this many points in the output file of correlation functions -beginfit real 0 Time where to begin the exponential fit of the correlation function -endfit real -1 Time where to end the exponential fit of the correlation function, -1 is until the end Opened vb_1.edr as double precision energy file Select the terms you want from the following list by selecting either (part of) the name or the number or a combination. End your selection with an empty line or a zero. ------------------------------------------------------------------- 1 Angle 2 Proper-Dih. 3 LJ-14 4 Coulomb-14 5 LJ-(SR) 6 Coulomb-(SR) 7 Potential 8 Kinetic-En. 9 Total-Energy 10 Temperature 11 Pressure 12 Constr.-rmsd 13 Vir-XX 14 Vir-XY 15 Vir-XZ 16 Vir-YX 17 Vir-YY 18 Vir-YZ 19 Vir-ZX 20 Vir-ZY 21 Vir-ZZ 22 Pres-XX 23 Pres-XY 24 Pres-XZ 25 Pres-YX 26 Pres-YY 27 Pres-YZ 28 Pres-ZX 29 Pres-ZY 30 Pres-ZZ 31 #Surf*SurfTen 32 Mu-X 33 Mu-Y 34 Mu-Z 35 T-System Last energy frame read 10000 time 50.000 gcq#259: "I'm Looking for a New Simulation" (Stone Temple Pilots) :-) G R O M A C S (-: Giving Russians Opium May Alter Current Situation :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) g_energy (-: Option Filename Type Description ------------------------------------------------------------ -f v_1.edr Input Energy file -f2 ener.edr Input, Opt. Energy file -s topol.tpr Input, Opt. Run input file: tpr tpb tpa -o e_1.xvg Output xvgr/xmgr file -viol violaver.xvg Output, Opt. xvgr/xmgr file -pairs pairs.xvg Output, Opt. xvgr/xmgr file -ora orienta.xvg Output, Opt. xvgr/xmgr file -ort orientt.xvg Output, Opt. xvgr/xmgr file -oda orideva.xvg Output, Opt. xvgr/xmgr file -odr oridevr.xvg Output, Opt. xvgr/xmgr file -odt oridevt.xvg Output, Opt. xvgr/xmgr file -oten oriten.xvg Output, Opt. xvgr/xmgr file -corr enecorr.xvg Output, Opt. xvgr/xmgr file -vis visco.xvg Output, Opt. xvgr/xmgr file -ravg runavgdf.xvg Output, Opt. xvgr/xmgr file -odh dhdl.xvg Output, Opt. xvgr/xmgr file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 19 Set the nicelevel -b time 10 First frame (ps) to read from trajectory -e time 0 Last frame (ps) to read from trajectory -[no]w bool no View output .xvg, .xpm, .eps and .pdb files -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]fee bool no Do a free energy estimate -fetemp real 300 Reference temperature for free energy calculation -zero real 0 Subtract a zero-point energy -[no]sum bool no Sum the energy terms selected rather than display them all -[no]dp bool no Print energies in high precision -nbmin int 5 Minimum number of blocks for error estimate -nbmax int 5 Maximum number of blocks for error estimate -[no]mutot bool no Compute the total dipole moment from the components -skip int 0 Skip number of frames between data points -[no]aver bool no Also print the exact average and rmsd stored in the energy frames (only when 1 term is requested) -nmol int 1 Number of molecules in your sample: the energies are divided by this number -[no]driftcorr bool no Useful only for calculations of fluctuation properties. The drift in the observables will be subtracted before computing the fluctuation properties. -[no]fluc bool no Calculate autocorrelation of energy fluctuations rather than energy itself -[no]orinst bool no Analyse instantaneous orientation data -[no]ovec bool no Also plot the eigenvectors with -oten -acflen int -1 Length of the ACF, default is half the number of frames -[no]normalize bool yes Normalize ACF -P enum 0 Order of Legendre polynomial for ACF (0 indicates none): 0, 1, 2 or 3 -fitfn enum none Fit function: none, exp, aexp, exp_exp, vac, exp5, exp7, exp9 or erffit -ncskip int 0 Skip this many points in the output file of correlation functions -beginfit real 0 Time where to begin the exponential fit of the correlation function -endfit real -1 Time where to end the exponential fit of the correlation function, -1 is until the end Opened v_1.edr as double precision energy file Select the terms you want from the following list by selecting either (part of) the name or the number or a combination. End your selection with an empty line or a zero. ------------------------------------------------------------------- 1 Angle 2 Proper-Dih. 3 LJ-14 4 Coulomb-14 5 LJ-(SR) 6 Coulomb-(SR) 7 Potential 8 Kinetic-En. 9 Total-Energy 10 Temperature 11 Pressure 12 Constr.-rmsd 13 Vir-XX 14 Vir-XY 15 Vir-XZ 16 Vir-YX 17 Vir-YY 18 Vir-YZ 19 Vir-ZX 20 Vir-ZY 21 Vir-ZZ 22 Pres-XX 23 Pres-XY 24 Pres-XZ 25 Pres-YX 26 Pres-YY 27 Pres-YZ 28 Pres-ZX 29 Pres-ZY 30 Pres-ZZ 31 #Surf*SurfTen 32 Mu-X 33 Mu-Y 34 Mu-Z 35 T-System Last energy frame read 10000 time 50.000 gcq#259: "I'm Looking for a New Simulation" (Stone Temple Pilots) :-) G R O M A C S (-: Giving Russians Opium May Alter Current Situation :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) g_energy (-: Option Filename Type Description ------------------------------------------------------------ -f vb_2.edr Input Energy file -f2 ener.edr Input, Opt. Energy file -s topol.tpr Input, Opt. Run input file: tpr tpb tpa -o eb_2.xvg Output xvgr/xmgr file -viol violaver.xvg Output, Opt. xvgr/xmgr file -pairs pairs.xvg Output, Opt. xvgr/xmgr file -ora orienta.xvg Output, Opt. xvgr/xmgr file -ort orientt.xvg Output, Opt. xvgr/xmgr file -oda orideva.xvg Output, Opt. xvgr/xmgr file -odr oridevr.xvg Output, Opt. xvgr/xmgr file -odt oridevt.xvg Output, Opt. xvgr/xmgr file -oten oriten.xvg Output, Opt. xvgr/xmgr file -corr enecorr.xvg Output, Opt. xvgr/xmgr file -vis visco.xvg Output, Opt. xvgr/xmgr file -ravg runavgdf.xvg Output, Opt. xvgr/xmgr file -odh dhdl.xvg Output, Opt. xvgr/xmgr file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 19 Set the nicelevel -b time 10 First frame (ps) to read from trajectory -e time 0 Last frame (ps) to read from trajectory -[no]w bool no View output .xvg, .xpm, .eps and .pdb files -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]fee bool no Do a free energy estimate -fetemp real 300 Reference temperature for free energy calculation -zero real 0 Subtract a zero-point energy -[no]sum bool no Sum the energy terms selected rather than display them all -[no]dp bool no Print energies in high precision -nbmin int 5 Minimum number of blocks for error estimate -nbmax int 5 Maximum number of blocks for error estimate -[no]mutot bool no Compute the total dipole moment from the components -skip int 0 Skip number of frames between data points -[no]aver bool no Also print the exact average and rmsd stored in the energy frames (only when 1 term is requested) -nmol int 1 Number of molecules in your sample: the energies are divided by this number -[no]driftcorr bool no Useful only for calculations of fluctuation properties. The drift in the observables will be subtracted before computing the fluctuation properties. -[no]fluc bool no Calculate autocorrelation of energy fluctuations rather than energy itself -[no]orinst bool no Analyse instantaneous orientation data -[no]ovec bool no Also plot the eigenvectors with -oten -acflen int -1 Length of the ACF, default is half the number of frames -[no]normalize bool yes Normalize ACF -P enum 0 Order of Legendre polynomial for ACF (0 indicates none): 0, 1, 2 or 3 -fitfn enum none Fit function: none, exp, aexp, exp_exp, vac, exp5, exp7, exp9 or erffit -ncskip int 0 Skip this many points in the output file of correlation functions -beginfit real 0 Time where to begin the exponential fit of the correlation function -endfit real -1 Time where to end the exponential fit of the correlation function, -1 is until the end Opened vb_2.edr as double precision energy file Select the terms you want from the following list by selecting either (part of) the name or the number or a combination. End your selection with an empty line or a zero. ------------------------------------------------------------------- 1 Angle 2 Proper-Dih. 3 LJ-14 4 Coulomb-14 5 LJ-(SR) 6 Coulomb-(SR) 7 Potential 8 Kinetic-En. 9 Total-Energy 10 Temperature 11 Pressure 12 Constr.-rmsd 13 Vir-XX 14 Vir-XY 15 Vir-XZ 16 Vir-YX 17 Vir-YY 18 Vir-YZ 19 Vir-ZX 20 Vir-ZY 21 Vir-ZZ 22 Pres-XX 23 Pres-XY 24 Pres-XZ 25 Pres-YX 26 Pres-YY 27 Pres-YZ 28 Pres-ZX 29 Pres-ZY 30 Pres-ZZ 31 #Surf*SurfTen 32 Mu-X 33 Mu-Y 34 Mu-Z 35 T-System Last energy frame read 10000 time 50.000 gcq#259: "I'm Looking for a New Simulation" (Stone Temple Pilots) :-) G R O M A C S (-: Giving Russians Opium May Alter Current Situation :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) g_energy (-: Option Filename Type Description ------------------------------------------------------------ -f v_2.edr Input Energy file -f2 ener.edr Input, Opt. Energy file -s topol.tpr Input, Opt. Run input file: tpr tpb tpa -o e_2.xvg Output xvgr/xmgr file -viol violaver.xvg Output, Opt. xvgr/xmgr file -pairs pairs.xvg Output, Opt. xvgr/xmgr file -ora orienta.xvg Output, Opt. xvgr/xmgr file -ort orientt.xvg Output, Opt. xvgr/xmgr file -oda orideva.xvg Output, Opt. xvgr/xmgr file -odr oridevr.xvg Output, Opt. xvgr/xmgr file -odt oridevt.xvg Output, Opt. xvgr/xmgr file -oten oriten.xvg Output, Opt. xvgr/xmgr file -corr enecorr.xvg Output, Opt. xvgr/xmgr file -vis visco.xvg Output, Opt. xvgr/xmgr file -ravg runavgdf.xvg Output, Opt. xvgr/xmgr file -odh dhdl.xvg Output, Opt. xvgr/xmgr file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 19 Set the nicelevel -b time 10 First frame (ps) to read from trajectory -e time 0 Last frame (ps) to read from trajectory -[no]w bool no View output .xvg, .xpm, .eps and .pdb files -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]fee bool no Do a free energy estimate -fetemp real 300 Reference temperature for free energy calculation -zero real 0 Subtract a zero-point energy -[no]sum bool no Sum the energy terms selected rather than display them all -[no]dp bool no Print energies in high precision -nbmin int 5 Minimum number of blocks for error estimate -nbmax int 5 Maximum number of blocks for error estimate -[no]mutot bool no Compute the total dipole moment from the components -skip int 0 Skip number of frames between data points -[no]aver bool no Also print the exact average and rmsd stored in the energy frames (only when 1 term is requested) -nmol int 1 Number of molecules in your sample: the energies are divided by this number -[no]driftcorr bool no Useful only for calculations of fluctuation properties. The drift in the observables will be subtracted before computing the fluctuation properties. -[no]fluc bool no Calculate autocorrelation of energy fluctuations rather than energy itself -[no]orinst bool no Analyse instantaneous orientation data -[no]ovec bool no Also plot the eigenvectors with -oten -acflen int -1 Length of the ACF, default is half the number of frames -[no]normalize bool yes Normalize ACF -P enum 0 Order of Legendre polynomial for ACF (0 indicates none): 0, 1, 2 or 3 -fitfn enum none Fit function: none, exp, aexp, exp_exp, vac, exp5, exp7, exp9 or erffit -ncskip int 0 Skip this many points in the output file of correlation functions -beginfit real 0 Time where to begin the exponential fit of the correlation function -endfit real -1 Time where to end the exponential fit of the correlation function, -1 is until the end Opened v_2.edr as double precision energy file Select the terms you want from the following list by selecting either (part of) the name or the number or a combination. End your selection with an empty line or a zero. ------------------------------------------------------------------- 1 Angle 2 Proper-Dih. 3 LJ-14 4 Coulomb-14 5 LJ-(SR) 6 Coulomb-(SR) 7 Potential 8 Kinetic-En. 9 Total-Energy 10 Temperature 11 Pressure 12 Constr.-rmsd 13 Vir-XX 14 Vir-XY 15 Vir-XZ 16 Vir-YX 17 Vir-YY 18 Vir-YZ 19 Vir-ZX 20 Vir-ZY 21 Vir-ZZ 22 Pres-XX 23 Pres-XY 24 Pres-XZ 25 Pres-YX 26 Pres-YY 27 Pres-YZ 28 Pres-ZX 29 Pres-ZY 30 Pres-ZZ 31 #Surf*SurfTen 32 Mu-X 33 Mu-Y 34 Mu-Z 35 T-System Last energy frame read 10000 time 50.000 gcq#259: "I'm Looking for a New Simulation" (Stone Temple Pilots) :-) G R O M A C S (-: Giving Russians Opium May Alter Current Situation :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) g_energy (-: Option Filename Type Description ------------------------------------------------------------ -f vb_3.edr Input Energy file -f2 ener.edr Input, Opt. Energy file -s topol.tpr Input, Opt. Run input file: tpr tpb tpa -o eb_3.xvg Output xvgr/xmgr file -viol violaver.xvg Output, Opt. xvgr/xmgr file -pairs pairs.xvg Output, Opt. xvgr/xmgr file -ora orienta.xvg Output, Opt. xvgr/xmgr file -ort orientt.xvg Output, Opt. xvgr/xmgr file -oda orideva.xvg Output, Opt. xvgr/xmgr file -odr oridevr.xvg Output, Opt. xvgr/xmgr file -odt oridevt.xvg Output, Opt. xvgr/xmgr file -oten oriten.xvg Output, Opt. xvgr/xmgr file -corr enecorr.xvg Output, Opt. xvgr/xmgr file -vis visco.xvg Output, Opt. xvgr/xmgr file -ravg runavgdf.xvg Output, Opt. xvgr/xmgr file -odh dhdl.xvg Output, Opt. xvgr/xmgr file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 19 Set the nicelevel -b time 10 First frame (ps) to read from trajectory -e time 0 Last frame (ps) to read from trajectory -[no]w bool no View output .xvg, .xpm, .eps and .pdb files -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]fee bool no Do a free energy estimate -fetemp real 300 Reference temperature for free energy calculation -zero real 0 Subtract a zero-point energy -[no]sum bool no Sum the energy terms selected rather than display them all -[no]dp bool no Print energies in high precision -nbmin int 5 Minimum number of blocks for error estimate -nbmax int 5 Maximum number of blocks for error estimate -[no]mutot bool no Compute the total dipole moment from the components -skip int 0 Skip number of frames between data points -[no]aver bool no Also print the exact average and rmsd stored in the energy frames (only when 1 term is requested) -nmol int 1 Number of molecules in your sample: the energies are divided by this number -[no]driftcorr bool no Useful only for calculations of fluctuation properties. The drift in the observables will be subtracted before computing the fluctuation properties. -[no]fluc bool no Calculate autocorrelation of energy fluctuations rather than energy itself -[no]orinst bool no Analyse instantaneous orientation data -[no]ovec bool no Also plot the eigenvectors with -oten -acflen int -1 Length of the ACF, default is half the number of frames -[no]normalize bool yes Normalize ACF -P enum 0 Order of Legendre polynomial for ACF (0 indicates none): 0, 1, 2 or 3 -fitfn enum none Fit function: none, exp, aexp, exp_exp, vac, exp5, exp7, exp9 or erffit -ncskip int 0 Skip this many points in the output file of correlation functions -beginfit real 0 Time where to begin the exponential fit of the correlation function -endfit real -1 Time where to end the exponential fit of the correlation function, -1 is until the end Opened vb_3.edr as double precision energy file Select the terms you want from the following list by selecting either (part of) the name or the number or a combination. End your selection with an empty line or a zero. ------------------------------------------------------------------- 1 Angle 2 Proper-Dih. 3 LJ-14 4 Coulomb-14 5 LJ-(SR) 6 Coulomb-(SR) 7 Potential 8 Kinetic-En. 9 Total-Energy 10 Temperature 11 Pressure 12 Constr.-rmsd 13 Vir-XX 14 Vir-XY 15 Vir-XZ 16 Vir-YX 17 Vir-YY 18 Vir-YZ 19 Vir-ZX 20 Vir-ZY 21 Vir-ZZ 22 Pres-XX 23 Pres-XY 24 Pres-XZ 25 Pres-YX 26 Pres-YY 27 Pres-YZ 28 Pres-ZX 29 Pres-ZY 30 Pres-ZZ 31 #Surf*SurfTen 32 Mu-X 33 Mu-Y 34 Mu-Z 35 T-System Last energy frame read 10000 time 50.000 gcq#259: "I'm Looking for a New Simulation" (Stone Temple Pilots) :-) G R O M A C S (-: Giving Russians Opium May Alter Current Situation :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) g_energy (-: Option Filename Type Description ------------------------------------------------------------ -f v_3.edr Input Energy file -f2 ener.edr Input, Opt. Energy file -s topol.tpr Input, Opt. Run input file: tpr tpb tpa -o e_3.xvg Output xvgr/xmgr file -viol violaver.xvg Output, Opt. xvgr/xmgr file -pairs pairs.xvg Output, Opt. xvgr/xmgr file -ora orienta.xvg Output, Opt. xvgr/xmgr file -ort orientt.xvg Output, Opt. xvgr/xmgr file -oda orideva.xvg Output, Opt. xvgr/xmgr file -odr oridevr.xvg Output, Opt. xvgr/xmgr file -odt oridevt.xvg Output, Opt. xvgr/xmgr file -oten oriten.xvg Output, Opt. xvgr/xmgr file -corr enecorr.xvg Output, Opt. xvgr/xmgr file -vis visco.xvg Output, Opt. xvgr/xmgr file -ravg runavgdf.xvg Output, Opt. xvgr/xmgr file -odh dhdl.xvg Output, Opt. xvgr/xmgr file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 19 Set the nicelevel -b time 10 First frame (ps) to read from trajectory -e time 0 Last frame (ps) to read from trajectory -[no]w bool no View output .xvg, .xpm, .eps and .pdb files -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]fee bool no Do a free energy estimate -fetemp real 300 Reference temperature for free energy calculation -zero real 0 Subtract a zero-point energy -[no]sum bool no Sum the energy terms selected rather than display them all -[no]dp bool no Print energies in high precision -nbmin int 5 Minimum number of blocks for error estimate -nbmax int 5 Maximum number of blocks for error estimate -[no]mutot bool no Compute the total dipole moment from the components -skip int 0 Skip number of frames between data points -[no]aver bool no Also print the exact average and rmsd stored in the energy frames (only when 1 term is requested) -nmol int 1 Number of molecules in your sample: the energies are divided by this number -[no]driftcorr bool no Useful only for calculations of fluctuation properties. The drift in the observables will be subtracted before computing the fluctuation properties. -[no]fluc bool no Calculate autocorrelation of energy fluctuations rather than energy itself -[no]orinst bool no Analyse instantaneous orientation data -[no]ovec bool no Also plot the eigenvectors with -oten -acflen int -1 Length of the ACF, default is half the number of frames -[no]normalize bool yes Normalize ACF -P enum 0 Order of Legendre polynomial for ACF (0 indicates none): 0, 1, 2 or 3 -fitfn enum none Fit function: none, exp, aexp, exp_exp, vac, exp5, exp7, exp9 or erffit -ncskip int 0 Skip this many points in the output file of correlation functions -beginfit real 0 Time where to begin the exponential fit of the correlation function -endfit real -1 Time where to end the exponential fit of the correlation function, -1 is until the end Opened v_3.edr as double precision energy file Select the terms you want from the following list by selecting either (part of) the name or the number or a combination. End your selection with an empty line or a zero. ------------------------------------------------------------------- 1 Angle 2 Proper-Dih. 3 LJ-14 4 Coulomb-14 5 LJ-(SR) 6 Coulomb-(SR) 7 Potential 8 Kinetic-En. 9 Total-Energy 10 Temperature 11 Pressure 12 Constr.-rmsd 13 Vir-XX 14 Vir-XY 15 Vir-XZ 16 Vir-YX 17 Vir-YY 18 Vir-YZ 19 Vir-ZX 20 Vir-ZY 21 Vir-ZZ 22 Pres-XX 23 Pres-XY 24 Pres-XZ 25 Pres-YX 26 Pres-YY 27 Pres-YZ 28 Pres-ZX 29 Pres-ZY 30 Pres-ZZ 31 #Surf*SurfTen 32 Mu-X 33 Mu-Y 34 Mu-Z 35 T-System Last energy frame read 10000 time 50.000 gcq#259: "I'm Looking for a New Simulation" (Stone Temple Pilots) :-) G R O M A C S (-: Giving Russians Opium May Alter Current Situation :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) g_energy (-: Option Filename Type Description ------------------------------------------------------------ -f vb_4.edr Input Energy file -f2 ener.edr Input, Opt. Energy file -s topol.tpr Input, Opt. Run input file: tpr tpb tpa -o eb_4.xvg Output xvgr/xmgr file -viol violaver.xvg Output, Opt. xvgr/xmgr file -pairs pairs.xvg Output, Opt. xvgr/xmgr file -ora orienta.xvg Output, Opt. xvgr/xmgr file -ort orientt.xvg Output, Opt. xvgr/xmgr file -oda orideva.xvg Output, Opt. xvgr/xmgr file -odr oridevr.xvg Output, Opt. xvgr/xmgr file -odt oridevt.xvg Output, Opt. xvgr/xmgr file -oten oriten.xvg Output, Opt. xvgr/xmgr file -corr enecorr.xvg Output, Opt. xvgr/xmgr file -vis visco.xvg Output, Opt. xvgr/xmgr file -ravg runavgdf.xvg Output, Opt. xvgr/xmgr file -odh dhdl.xvg Output, Opt. xvgr/xmgr file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 19 Set the nicelevel -b time 10 First frame (ps) to read from trajectory -e time 0 Last frame (ps) to read from trajectory -[no]w bool no View output .xvg, .xpm, .eps and .pdb files -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]fee bool no Do a free energy estimate -fetemp real 300 Reference temperature for free energy calculation -zero real 0 Subtract a zero-point energy -[no]sum bool no Sum the energy terms selected rather than display them all -[no]dp bool no Print energies in high precision -nbmin int 5 Minimum number of blocks for error estimate -nbmax int 5 Maximum number of blocks for error estimate -[no]mutot bool no Compute the total dipole moment from the components -skip int 0 Skip number of frames between data points -[no]aver bool no Also print the exact average and rmsd stored in the energy frames (only when 1 term is requested) -nmol int 1 Number of molecules in your sample: the energies are divided by this number -[no]driftcorr bool no Useful only for calculations of fluctuation properties. The drift in the observables will be subtracted before computing the fluctuation properties. -[no]fluc bool no Calculate autocorrelation of energy fluctuations rather than energy itself -[no]orinst bool no Analyse instantaneous orientation data -[no]ovec bool no Also plot the eigenvectors with -oten -acflen int -1 Length of the ACF, default is half the number of frames -[no]normalize bool yes Normalize ACF -P enum 0 Order of Legendre polynomial for ACF (0 indicates none): 0, 1, 2 or 3 -fitfn enum none Fit function: none, exp, aexp, exp_exp, vac, exp5, exp7, exp9 or erffit -ncskip int 0 Skip this many points in the output file of correlation functions -beginfit real 0 Time where to begin the exponential fit of the correlation function -endfit real -1 Time where to end the exponential fit of the correlation function, -1 is until the end Opened vb_4.edr as double precision energy file Select the terms you want from the following list by selecting either (part of) the name or the number or a combination. End your selection with an empty line or a zero. ------------------------------------------------------------------- 1 Angle 2 Proper-Dih. 3 LJ-14 4 Coulomb-14 5 LJ-(SR) 6 Coulomb-(SR) 7 Potential 8 Kinetic-En. 9 Total-Energy 10 Temperature 11 Pressure 12 Constr.-rmsd 13 Vir-XX 14 Vir-XY 15 Vir-XZ 16 Vir-YX 17 Vir-YY 18 Vir-YZ 19 Vir-ZX 20 Vir-ZY 21 Vir-ZZ 22 Pres-XX 23 Pres-XY 24 Pres-XZ 25 Pres-YX 26 Pres-YY 27 Pres-YZ 28 Pres-ZX 29 Pres-ZY 30 Pres-ZZ 31 #Surf*SurfTen 32 Mu-X 33 Mu-Y 34 Mu-Z 35 T-System Last energy frame read 10000 time 50.000 gcq#259: "I'm Looking for a New Simulation" (Stone Temple Pilots) :-) G R O M A C S (-: Giving Russians Opium May Alter Current Situation :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) g_energy (-: Option Filename Type Description ------------------------------------------------------------ -f v_4.edr Input Energy file -f2 ener.edr Input, Opt. Energy file -s topol.tpr Input, Opt. Run input file: tpr tpb tpa -o e_4.xvg Output xvgr/xmgr file -viol violaver.xvg Output, Opt. xvgr/xmgr file -pairs pairs.xvg Output, Opt. xvgr/xmgr file -ora orienta.xvg Output, Opt. xvgr/xmgr file -ort orientt.xvg Output, Opt. xvgr/xmgr file -oda orideva.xvg Output, Opt. xvgr/xmgr file -odr oridevr.xvg Output, Opt. xvgr/xmgr file -odt oridevt.xvg Output, Opt. xvgr/xmgr file -oten oriten.xvg Output, Opt. xvgr/xmgr file -corr enecorr.xvg Output, Opt. xvgr/xmgr file -vis visco.xvg Output, Opt. xvgr/xmgr file -ravg runavgdf.xvg Output, Opt. xvgr/xmgr file -odh dhdl.xvg Output, Opt. xvgr/xmgr file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 19 Set the nicelevel -b time 10 First frame (ps) to read from trajectory -e time 0 Last frame (ps) to read from trajectory -[no]w bool no View output .xvg, .xpm, .eps and .pdb files -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]fee bool no Do a free energy estimate -fetemp real 300 Reference temperature for free energy calculation -zero real 0 Subtract a zero-point energy -[no]sum bool no Sum the energy terms selected rather than display them all -[no]dp bool no Print energies in high precision -nbmin int 5 Minimum number of blocks for error estimate -nbmax int 5 Maximum number of blocks for error estimate -[no]mutot bool no Compute the total dipole moment from the components -skip int 0 Skip number of frames between data points -[no]aver bool no Also print the exact average and rmsd stored in the energy frames (only when 1 term is requested) -nmol int 1 Number of molecules in your sample: the energies are divided by this number -[no]driftcorr bool no Useful only for calculations of fluctuation properties. The drift in the observables will be subtracted before computing the fluctuation properties. -[no]fluc bool no Calculate autocorrelation of energy fluctuations rather than energy itself -[no]orinst bool no Analyse instantaneous orientation data -[no]ovec bool no Also plot the eigenvectors with -oten -acflen int -1 Length of the ACF, default is half the number of frames -[no]normalize bool yes Normalize ACF -P enum 0 Order of Legendre polynomial for ACF (0 indicates none): 0, 1, 2 or 3 -fitfn enum none Fit function: none, exp, aexp, exp_exp, vac, exp5, exp7, exp9 or erffit -ncskip int 0 Skip this many points in the output file of correlation functions -beginfit real 0 Time where to begin the exponential fit of the correlation function -endfit real -1 Time where to end the exponential fit of the correlation function, -1 is until the end Opened v_4.edr as double precision energy file Select the terms you want from the following list by selecting either (part of) the name or the number or a combination. End your selection with an empty line or a zero. ------------------------------------------------------------------- 1 Angle 2 Proper-Dih. 3 LJ-14 4 Coulomb-14 5 LJ-(SR) 6 Coulomb-(SR) 7 Potential 8 Kinetic-En. 9 Total-Energy 10 Temperature 11 Pressure 12 Constr.-rmsd 13 Vir-XX 14 Vir-XY 15 Vir-XZ 16 Vir-YX 17 Vir-YY 18 Vir-YZ 19 Vir-ZX 20 Vir-ZY 21 Vir-ZZ 22 Pres-XX 23 Pres-XY 24 Pres-XZ 25 Pres-YX 26 Pres-YY 27 Pres-YZ 28 Pres-ZX 29 Pres-ZY 30 Pres-ZZ 31 #Surf*SurfTen 32 Mu-X 33 Mu-Y 34 Mu-Z 35 T-System Last energy frame read 10000 time 50.000 gcq#8: "Don't Push Me, Cause I'm Close to the Edge" (Tricky) :-) G R O M A C S (-: Good gRace! Old Maple Actually Chews Slate :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) g_energy (-: Option Filename Type Description ------------------------------------------------------------ -f vb_5.edr Input Energy file -f2 ener.edr Input, Opt. Energy file -s topol.tpr Input, Opt. Run input file: tpr tpb tpa -o eb_5.xvg Output xvgr/xmgr file -viol violaver.xvg Output, Opt. xvgr/xmgr file -pairs pairs.xvg Output, Opt. xvgr/xmgr file -ora orienta.xvg Output, Opt. xvgr/xmgr file -ort orientt.xvg Output, Opt. xvgr/xmgr file -oda orideva.xvg Output, Opt. xvgr/xmgr file -odr oridevr.xvg Output, Opt. xvgr/xmgr file -odt oridevt.xvg Output, Opt. xvgr/xmgr file -oten oriten.xvg Output, Opt. xvgr/xmgr file -corr enecorr.xvg Output, Opt. xvgr/xmgr file -vis visco.xvg Output, Opt. xvgr/xmgr file -ravg runavgdf.xvg Output, Opt. xvgr/xmgr file -odh dhdl.xvg Output, Opt. xvgr/xmgr file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 19 Set the nicelevel -b time 10 First frame (ps) to read from trajectory -e time 0 Last frame (ps) to read from trajectory -[no]w bool no View output .xvg, .xpm, .eps and .pdb files -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]fee bool no Do a free energy estimate -fetemp real 300 Reference temperature for free energy calculation -zero real 0 Subtract a zero-point energy -[no]sum bool no Sum the energy terms selected rather than display them all -[no]dp bool no Print energies in high precision -nbmin int 5 Minimum number of blocks for error estimate -nbmax int 5 Maximum number of blocks for error estimate -[no]mutot bool no Compute the total dipole moment from the components -skip int 0 Skip number of frames between data points -[no]aver bool no Also print the exact average and rmsd stored in the energy frames (only when 1 term is requested) -nmol int 1 Number of molecules in your sample: the energies are divided by this number -[no]driftcorr bool no Useful only for calculations of fluctuation properties. The drift in the observables will be subtracted before computing the fluctuation properties. -[no]fluc bool no Calculate autocorrelation of energy fluctuations rather than energy itself -[no]orinst bool no Analyse instantaneous orientation data -[no]ovec bool no Also plot the eigenvectors with -oten -acflen int -1 Length of the ACF, default is half the number of frames -[no]normalize bool yes Normalize ACF -P enum 0 Order of Legendre polynomial for ACF (0 indicates none): 0, 1, 2 or 3 -fitfn enum none Fit function: none, exp, aexp, exp_exp, vac, exp5, exp7, exp9 or erffit -ncskip int 0 Skip this many points in the output file of correlation functions -beginfit real 0 Time where to begin the exponential fit of the correlation function -endfit real -1 Time where to end the exponential fit of the correlation function, -1 is until the end Opened vb_5.edr as double precision energy file Select the terms you want from the following list by selecting either (part of) the name or the number or a combination. End your selection with an empty line or a zero. ------------------------------------------------------------------- 1 Angle 2 Proper-Dih. 3 LJ-14 4 Coulomb-14 5 LJ-(SR) 6 Coulomb-(SR) 7 Potential 8 Kinetic-En. 9 Total-Energy 10 Temperature 11 Pressure 12 Constr.-rmsd 13 Vir-XX 14 Vir-XY 15 Vir-XZ 16 Vir-YX 17 Vir-YY 18 Vir-YZ 19 Vir-ZX 20 Vir-ZY 21 Vir-ZZ 22 Pres-XX 23 Pres-XY 24 Pres-XZ 25 Pres-YX 26 Pres-YY 27 Pres-YZ 28 Pres-ZX 29 Pres-ZY 30 Pres-ZZ 31 #Surf*SurfTen 32 Mu-X 33 Mu-Y 34 Mu-Z 35 T-System Last energy frame read 10000 time 50.000 gcq#8: "Don't Push Me, Cause I'm Close to the Edge" (Tricky) :-) G R O M A C S (-: Good gRace! Old Maple Actually Chews Slate :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) g_energy (-: Option Filename Type Description ------------------------------------------------------------ -f v_5.edr Input Energy file -f2 ener.edr Input, Opt. Energy file -s topol.tpr Input, Opt. Run input file: tpr tpb tpa -o e_5.xvg Output xvgr/xmgr file -viol violaver.xvg Output, Opt. xvgr/xmgr file -pairs pairs.xvg Output, Opt. xvgr/xmgr file -ora orienta.xvg Output, Opt. xvgr/xmgr file -ort orientt.xvg Output, Opt. xvgr/xmgr file -oda orideva.xvg Output, Opt. xvgr/xmgr file -odr oridevr.xvg Output, Opt. xvgr/xmgr file -odt oridevt.xvg Output, Opt. xvgr/xmgr file -oten oriten.xvg Output, Opt. xvgr/xmgr file -corr enecorr.xvg Output, Opt. xvgr/xmgr file -vis visco.xvg Output, Opt. xvgr/xmgr file -ravg runavgdf.xvg Output, Opt. xvgr/xmgr file -odh dhdl.xvg Output, Opt. xvgr/xmgr file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 19 Set the nicelevel -b time 10 First frame (ps) to read from trajectory -e time 0 Last frame (ps) to read from trajectory -[no]w bool no View output .xvg, .xpm, .eps and .pdb files -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]fee bool no Do a free energy estimate -fetemp real 300 Reference temperature for free energy calculation -zero real 0 Subtract a zero-point energy -[no]sum bool no Sum the energy terms selected rather than display them all -[no]dp bool no Print energies in high precision -nbmin int 5 Minimum number of blocks for error estimate -nbmax int 5 Maximum number of blocks for error estimate -[no]mutot bool no Compute the total dipole moment from the components -skip int 0 Skip number of frames between data points -[no]aver bool no Also print the exact average and rmsd stored in the energy frames (only when 1 term is requested) -nmol int 1 Number of molecules in your sample: the energies are divided by this number -[no]driftcorr bool no Useful only for calculations of fluctuation properties. The drift in the observables will be subtracted before computing the fluctuation properties. -[no]fluc bool no Calculate autocorrelation of energy fluctuations rather than energy itself -[no]orinst bool no Analyse instantaneous orientation data -[no]ovec bool no Also plot the eigenvectors with -oten -acflen int -1 Length of the ACF, default is half the number of frames -[no]normalize bool yes Normalize ACF -P enum 0 Order of Legendre polynomial for ACF (0 indicates none): 0, 1, 2 or 3 -fitfn enum none Fit function: none, exp, aexp, exp_exp, vac, exp5, exp7, exp9 or erffit -ncskip int 0 Skip this many points in the output file of correlation functions -beginfit real 0 Time where to begin the exponential fit of the correlation function -endfit real -1 Time where to end the exponential fit of the correlation function, -1 is until the end Opened v_5.edr as double precision energy file Select the terms you want from the following list by selecting either (part of) the name or the number or a combination. End your selection with an empty line or a zero. ------------------------------------------------------------------- 1 Angle 2 Proper-Dih. 3 LJ-14 4 Coulomb-14 5 LJ-(SR) 6 Coulomb-(SR) 7 Potential 8 Kinetic-En. 9 Total-Energy 10 Temperature 11 Pressure 12 Constr.-rmsd 13 Vir-XX 14 Vir-XY 15 Vir-XZ 16 Vir-YX 17 Vir-YY 18 Vir-YZ 19 Vir-ZX 20 Vir-ZY 21 Vir-ZZ 22 Pres-XX 23 Pres-XY 24 Pres-XZ 25 Pres-YX 26 Pres-YY 27 Pres-YZ 28 Pres-ZX 29 Pres-ZY 30 Pres-ZZ 31 #Surf*SurfTen 32 Mu-X 33 Mu-Y 34 Mu-Z 35 T-System Last energy frame read 10000 time 50.000 gcq#8: "Don't Push Me, Cause I'm Close to the Edge" (Tricky) :-) G R O M A C S (-: Good gRace! Old Maple Actually Chews Slate :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) g_energy (-: Option Filename Type Description ------------------------------------------------------------ -f vb_6.edr Input Energy file -f2 ener.edr Input, Opt. Energy file -s topol.tpr Input, Opt. Run input file: tpr tpb tpa -o eb_6.xvg Output xvgr/xmgr file -viol violaver.xvg Output, Opt. xvgr/xmgr file -pairs pairs.xvg Output, Opt. xvgr/xmgr file -ora orienta.xvg Output, Opt. xvgr/xmgr file -ort orientt.xvg Output, Opt. xvgr/xmgr file -oda orideva.xvg Output, Opt. xvgr/xmgr file -odr oridevr.xvg Output, Opt. xvgr/xmgr file -odt oridevt.xvg Output, Opt. xvgr/xmgr file -oten oriten.xvg Output, Opt. xvgr/xmgr file -corr enecorr.xvg Output, Opt. xvgr/xmgr file -vis visco.xvg Output, Opt. xvgr/xmgr file -ravg runavgdf.xvg Output, Opt. xvgr/xmgr file -odh dhdl.xvg Output, Opt. xvgr/xmgr file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 19 Set the nicelevel -b time 10 First frame (ps) to read from trajectory -e time 0 Last frame (ps) to read from trajectory -[no]w bool no View output .xvg, .xpm, .eps and .pdb files -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]fee bool no Do a free energy estimate -fetemp real 300 Reference temperature for free energy calculation -zero real 0 Subtract a zero-point energy -[no]sum bool no Sum the energy terms selected rather than display them all -[no]dp bool no Print energies in high precision -nbmin int 5 Minimum number of blocks for error estimate -nbmax int 5 Maximum number of blocks for error estimate -[no]mutot bool no Compute the total dipole moment from the components -skip int 0 Skip number of frames between data points -[no]aver bool no Also print the exact average and rmsd stored in the energy frames (only when 1 term is requested) -nmol int 1 Number of molecules in your sample: the energies are divided by this number -[no]driftcorr bool no Useful only for calculations of fluctuation properties. The drift in the observables will be subtracted before computing the fluctuation properties. -[no]fluc bool no Calculate autocorrelation of energy fluctuations rather than energy itself -[no]orinst bool no Analyse instantaneous orientation data -[no]ovec bool no Also plot the eigenvectors with -oten -acflen int -1 Length of the ACF, default is half the number of frames -[no]normalize bool yes Normalize ACF -P enum 0 Order of Legendre polynomial for ACF (0 indicates none): 0, 1, 2 or 3 -fitfn enum none Fit function: none, exp, aexp, exp_exp, vac, exp5, exp7, exp9 or erffit -ncskip int 0 Skip this many points in the output file of correlation functions -beginfit real 0 Time where to begin the exponential fit of the correlation function -endfit real -1 Time where to end the exponential fit of the correlation function, -1 is until the end Opened vb_6.edr as double precision energy file Select the terms you want from the following list by selecting either (part of) the name or the number or a combination. End your selection with an empty line or a zero. ------------------------------------------------------------------- 1 Angle 2 Proper-Dih. 3 LJ-14 4 Coulomb-14 5 LJ-(SR) 6 Coulomb-(SR) 7 Potential 8 Kinetic-En. 9 Total-Energy 10 Temperature 11 Pressure 12 Constr.-rmsd 13 Vir-XX 14 Vir-XY 15 Vir-XZ 16 Vir-YX 17 Vir-YY 18 Vir-YZ 19 Vir-ZX 20 Vir-ZY 21 Vir-ZZ 22 Pres-XX 23 Pres-XY 24 Pres-XZ 25 Pres-YX 26 Pres-YY 27 Pres-YZ 28 Pres-ZX 29 Pres-ZY 30 Pres-ZZ 31 #Surf*SurfTen 32 Mu-X 33 Mu-Y 34 Mu-Z 35 T-System Last energy frame read 10000 time 50.000 gcq#8: "Don't Push Me, Cause I'm Close to the Edge" (Tricky) :-) G R O M A C S (-: Good gRace! Old Maple Actually Chews Slate :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) g_energy (-: Option Filename Type Description ------------------------------------------------------------ -f v_6.edr Input Energy file -f2 ener.edr Input, Opt. Energy file -s topol.tpr Input, Opt. Run input file: tpr tpb tpa -o e_6.xvg Output xvgr/xmgr file -viol violaver.xvg Output, Opt. xvgr/xmgr file -pairs pairs.xvg Output, Opt. xvgr/xmgr file -ora orienta.xvg Output, Opt. xvgr/xmgr file -ort orientt.xvg Output, Opt. xvgr/xmgr file -oda orideva.xvg Output, Opt. xvgr/xmgr file -odr oridevr.xvg Output, Opt. xvgr/xmgr file -odt oridevt.xvg Output, Opt. xvgr/xmgr file -oten oriten.xvg Output, Opt. xvgr/xmgr file -corr enecorr.xvg Output, Opt. xvgr/xmgr file -vis visco.xvg Output, Opt. xvgr/xmgr file -ravg runavgdf.xvg Output, Opt. xvgr/xmgr file -odh dhdl.xvg Output, Opt. xvgr/xmgr file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 19 Set the nicelevel -b time 10 First frame (ps) to read from trajectory -e time 0 Last frame (ps) to read from trajectory -[no]w bool no View output .xvg, .xpm, .eps and .pdb files -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]fee bool no Do a free energy estimate -fetemp real 300 Reference temperature for free energy calculation -zero real 0 Subtract a zero-point energy -[no]sum bool no Sum the energy terms selected rather than display them all -[no]dp bool no Print energies in high precision -nbmin int 5 Minimum number of blocks for error estimate -nbmax int 5 Maximum number of blocks for error estimate -[no]mutot bool no Compute the total dipole moment from the components -skip int 0 Skip number of frames between data points -[no]aver bool no Also print the exact average and rmsd stored in the energy frames (only when 1 term is requested) -nmol int 1 Number of molecules in your sample: the energies are divided by this number -[no]driftcorr bool no Useful only for calculations of fluctuation properties. The drift in the observables will be subtracted before computing the fluctuation properties. -[no]fluc bool no Calculate autocorrelation of energy fluctuations rather than energy itself -[no]orinst bool no Analyse instantaneous orientation data -[no]ovec bool no Also plot the eigenvectors with -oten -acflen int -1 Length of the ACF, default is half the number of frames -[no]normalize bool yes Normalize ACF -P enum 0 Order of Legendre polynomial for ACF (0 indicates none): 0, 1, 2 or 3 -fitfn enum none Fit function: none, exp, aexp, exp_exp, vac, exp5, exp7, exp9 or erffit -ncskip int 0 Skip this many points in the output file of correlation functions -beginfit real 0 Time where to begin the exponential fit of the correlation function -endfit real -1 Time where to end the exponential fit of the correlation function, -1 is until the end Opened v_6.edr as double precision energy file Select the terms you want from the following list by selecting either (part of) the name or the number or a combination. End your selection with an empty line or a zero. ------------------------------------------------------------------- 1 Angle 2 Proper-Dih. 3 LJ-14 4 Coulomb-14 5 LJ-(SR) 6 Coulomb-(SR) 7 Potential 8 Kinetic-En. 9 Total-Energy 10 Temperature 11 Pressure 12 Constr.-rmsd 13 Vir-XX 14 Vir-XY 15 Vir-XZ 16 Vir-YX 17 Vir-YY 18 Vir-YZ 19 Vir-ZX 20 Vir-ZY 21 Vir-ZZ 22 Pres-XX 23 Pres-XY 24 Pres-XZ 25 Pres-YX 26 Pres-YY 27 Pres-YZ 28 Pres-ZX 29 Pres-ZY 30 Pres-ZZ 31 #Surf*SurfTen 32 Mu-X 33 Mu-Y 34 Mu-Z 35 T-System Last energy frame read 10000 time 50.000 gcq#8: "Don't Push Me, Cause I'm Close to the Edge" (Tricky) :-) G R O M A C S (-: Good gRace! Old Maple Actually Chews Slate :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) g_energy (-: Option Filename Type Description ------------------------------------------------------------ -f vb_7.edr Input Energy file -f2 ener.edr Input, Opt. Energy file -s topol.tpr Input, Opt. Run input file: tpr tpb tpa -o eb_7.xvg Output xvgr/xmgr file -viol violaver.xvg Output, Opt. xvgr/xmgr file -pairs pairs.xvg Output, Opt. xvgr/xmgr file -ora orienta.xvg Output, Opt. xvgr/xmgr file -ort orientt.xvg Output, Opt. xvgr/xmgr file -oda orideva.xvg Output, Opt. xvgr/xmgr file -odr oridevr.xvg Output, Opt. xvgr/xmgr file -odt oridevt.xvg Output, Opt. xvgr/xmgr file -oten oriten.xvg Output, Opt. xvgr/xmgr file -corr enecorr.xvg Output, Opt. xvgr/xmgr file -vis visco.xvg Output, Opt. xvgr/xmgr file -ravg runavgdf.xvg Output, Opt. xvgr/xmgr file -odh dhdl.xvg Output, Opt. xvgr/xmgr file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 19 Set the nicelevel -b time 10 First frame (ps) to read from trajectory -e time 0 Last frame (ps) to read from trajectory -[no]w bool no View output .xvg, .xpm, .eps and .pdb files -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]fee bool no Do a free energy estimate -fetemp real 300 Reference temperature for free energy calculation -zero real 0 Subtract a zero-point energy -[no]sum bool no Sum the energy terms selected rather than display them all -[no]dp bool no Print energies in high precision -nbmin int 5 Minimum number of blocks for error estimate -nbmax int 5 Maximum number of blocks for error estimate -[no]mutot bool no Compute the total dipole moment from the components -skip int 0 Skip number of frames between data points -[no]aver bool no Also print the exact average and rmsd stored in the energy frames (only when 1 term is requested) -nmol int 1 Number of molecules in your sample: the energies are divided by this number -[no]driftcorr bool no Useful only for calculations of fluctuation properties. The drift in the observables will be subtracted before computing the fluctuation properties. -[no]fluc bool no Calculate autocorrelation of energy fluctuations rather than energy itself -[no]orinst bool no Analyse instantaneous orientation data -[no]ovec bool no Also plot the eigenvectors with -oten -acflen int -1 Length of the ACF, default is half the number of frames -[no]normalize bool yes Normalize ACF -P enum 0 Order of Legendre polynomial for ACF (0 indicates none): 0, 1, 2 or 3 -fitfn enum none Fit function: none, exp, aexp, exp_exp, vac, exp5, exp7, exp9 or erffit -ncskip int 0 Skip this many points in the output file of correlation functions -beginfit real 0 Time where to begin the exponential fit of the correlation function -endfit real -1 Time where to end the exponential fit of the correlation function, -1 is until the end Opened vb_7.edr as double precision energy file Select the terms you want from the following list by selecting either (part of) the name or the number or a combination. End your selection with an empty line or a zero. ------------------------------------------------------------------- 1 Angle 2 Proper-Dih. 3 LJ-14 4 Coulomb-14 5 LJ-(SR) 6 Coulomb-(SR) 7 Potential 8 Kinetic-En. 9 Total-Energy 10 Temperature 11 Pressure 12 Constr.-rmsd 13 Vir-XX 14 Vir-XY 15 Vir-XZ 16 Vir-YX 17 Vir-YY 18 Vir-YZ 19 Vir-ZX 20 Vir-ZY 21 Vir-ZZ 22 Pres-XX 23 Pres-XY 24 Pres-XZ 25 Pres-YX 26 Pres-YY 27 Pres-YZ 28 Pres-ZX 29 Pres-ZY 30 Pres-ZZ 31 #Surf*SurfTen 32 Mu-X 33 Mu-Y 34 Mu-Z 35 T-System Last energy frame read 10000 time 50.000 gcq#8: "Don't Push Me, Cause I'm Close to the Edge" (Tricky) :-) G R O M A C S (-: Good gRace! Old Maple Actually Chews Slate :-) VERSION 4.5.5 (-: Written by Emile Apol, Rossen Apostolov, Herman J.C. Berendsen, Aldert van Buuren, Pär Bjelkmar, Rudi van Drunen, Anton Feenstra, Gerrit Groenhof, Peter Kasson, Per Larsson, Pieter Meulenhoff, Teemu Murtola, Szilard Pall, Sander Pronk, Roland Schulz, Michael Shirts, Alfons Sijbers, Peter Tieleman, Berk Hess, David van der Spoel, and Erik Lindahl. Copyright (c) 1991-2000, University of Groningen, The Netherlands. Copyright (c) 2001-2010, The GROMACS development team at Uppsala University & The Royal Institute of Technology, Sweden. check out http://www.gromacs.org for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. :-) g_energy (-: Option Filename Type Description ------------------------------------------------------------ -f v_7.edr Input Energy file -f2 ener.edr Input, Opt. Energy file -s topol.tpr Input, Opt. Run input file: tpr tpb tpa -o e_7.xvg Output xvgr/xmgr file -viol violaver.xvg Output, Opt. xvgr/xmgr file -pairs pairs.xvg Output, Opt. xvgr/xmgr file -ora orienta.xvg Output, Opt. xvgr/xmgr file -ort orientt.xvg Output, Opt. xvgr/xmgr file -oda orideva.xvg Output, Opt. xvgr/xmgr file -odr oridevr.xvg Output, Opt. xvgr/xmgr file -odt oridevt.xvg Output, Opt. xvgr/xmgr file -oten oriten.xvg Output, Opt. xvgr/xmgr file -corr enecorr.xvg Output, Opt. xvgr/xmgr file -vis visco.xvg Output, Opt. xvgr/xmgr file -ravg runavgdf.xvg Output, Opt. xvgr/xmgr file -odh dhdl.xvg Output, Opt. xvgr/xmgr file Option Type Value Description ------------------------------------------------------ -[no]h bool no Print help info and quit -[no]version bool no Print version info and quit -nice int 19 Set the nicelevel -b time 10 First frame (ps) to read from trajectory -e time 0 Last frame (ps) to read from trajectory -[no]w bool no View output .xvg, .xpm, .eps and .pdb files -xvg enum xmgrace xvg plot formatting: xmgrace, xmgr or none -[no]fee bool no Do a free energy estimate -fetemp real 300 Reference temperature for free energy calculation -zero real 0 Subtract a zero-point energy -[no]sum bool no Sum the energy terms selected rather than display them all -[no]dp bool no Print energies in high precision -nbmin int 5 Minimum number of blocks for error estimate -nbmax int 5 Maximum number of blocks for error estimate -[no]mutot bool no Compute the total dipole moment from the components -skip int 0 Skip number of frames between data points -[no]aver bool no Also print the exact average and rmsd stored in the energy frames (only when 1 term is requested) -nmol int 1 Number of molecules in your sample: the energies are divided by this number -[no]driftcorr bool no Useful only for calculations of fluctuation properties. The drift in the observables will be subtracted before computing the fluctuation properties. -[no]fluc bool no Calculate autocorrelation of energy fluctuations rather than energy itself -[no]orinst bool no Analyse instantaneous orientation data -[no]ovec bool no Also plot the eigenvectors with -oten -acflen int -1 Length of the ACF, default is half the number of frames -[no]normalize bool yes Normalize ACF -P enum 0 Order of Legendre polynomial for ACF (0 indicates none): 0, 1, 2 or 3 -fitfn enum none Fit function: none, exp, aexp, exp_exp, vac, exp5, exp7, exp9 or erffit -ncskip int 0 Skip this many points in the output file of correlation functions -beginfit real 0 Time where to begin the exponential fit of the correlation function -endfit real -1 Time where to end the exponential fit of the correlation function, -1 is until the end Opened v_7.edr as double precision energy file Select the terms you want from the following list by selecting either (part of) the name or the number or a combination. End your selection with an empty line or a zero. ------------------------------------------------------------------- 1 Angle 2 Proper-Dih. 3 LJ-14 4 Coulomb-14 5 LJ-(SR) 6 Coulomb-(SR) 7 Potential 8 Kinetic-En. 9 Total-Energy 10 Temperature 11 Pressure 12 Constr.-rmsd 13 Vir-XX 14 Vir-XY 15 Vir-XZ 16 Vir-YX 17 Vir-YY 18 Vir-YZ 19 Vir-ZX 20 Vir-ZY 21 Vir-ZZ 22 Pres-XX 23 Pres-XY 24 Pres-XZ 25 Pres-YX 26 Pres-YY 27 Pres-YZ 28 Pres-ZX 29 Pres-ZY 30 Pres-ZZ 31 #Surf*SurfTen 32 Mu-X 33 Mu-Y 34 Mu-Z 35 T-System Last energy frame read 10000 time 50.000 gcq#8: "Don't Push Me, Cause I'm Close to the Edge" (Tricky)
Сравним энергии:
LJ = {'v': [], 'vb': []}
Coul = {'v': [], 'vb': []}
epsilon = [1.0/i/i/i for i in range(1,8)]
for j in ['v','vb']:
for i in range(1,8):
f = open("{}_{}.txt".format(j, i), 'r')
for line in f:
if line.startswith('LJ (SR)'):
LJ[j].append(float(line.split()[2]))
if line.startswith('Coulomb (SR)'):
Coul[j].append(float(line.split()[2]))
f.close()
for i in range(7):
print "{:16}\t{}".format(epsilon[i], LJ['vb'][i]-LJ['v'][i])
print 'average:', (sum(LJ['vb'])-sum(LJ['v']))/7
1.0 -2.47982816e-06 0.125 -1.74466513e-06 0.037037037037 -1.56555869e-06 0.015625 -1.49107557e-06 0.008 -1.45194566e-06 0.00462962962963 -1.42833912e-06 0.00291545189504 -1.41294366e-06 average: -1.65347942714e-06
for i in range(7):
print "{:16}\t{}".format(epsilon[i], Coul['vb'][i]-Coul['v'][i])
print 'average:', (sum(Coul['vb'])-sum(Coul['v']))/7
1.0 86.6279 0.125 87.5004 0.037037037037 87.6964 0.015625 87.7747 0.008 87.8151 0.00462962962963 87.8393 0.00291545189504 87.855 average: 87.5869714286